-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@urpflanze/core",
"version": "0.5.12",
"description": "Create 2d primitive shapes, encapsulate and repeat them by handling each repetition and generate recursive shapes",
"license": "GPL-3.0-or-later",
"docs": "https://docs.urpflanze.org/core",
"module": "build/esm/urpflanze.js",
"browser": "build/umd/urpflanze.js",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"build",
"dist",
"package.json",
"README.md",
"LICENSE"
],
"keywords": [
"urpflanze",
"creativecoding",
"generativeart",
"plotterart",
"2d",
"mathart",
"typescript"
],
"author": {
"name": "Gennaro Bosone",
"email": "gennaro.bs@gmail.com",
"url": "https://github.com/genbs"
},
"homepage": "https://docs.urpflanze.org/core/",
"repository": {
"type": "git",
"url": "https://github.com/urpflanze-org/core.git"
},
"bugs": {
"url": "https://github.com/urpflanze-org/core/issues",
"email": "gennaro.bs@gmail.com"
},
"funding": [
{
"type": "kofi",
"url": "https://ko-fi.com/urpflanze"
},
{
"type": "bitcoin",
"url": "https://explorer.btc.com/btc/address/1CSQq4aMmsA71twvyZHZCjmeB2AmQGCPNq"
},
{
"type": "ethereum",
"url": "https://etherscan.io/address/0x9086c4bb7015c1d6dc79162d02e7e1239c982c01"
}
],
"scripts": {
"build-browser": "npx webpack --config webpack.config.js",
"build": "tsc --p tsconfig.json && tsc --p tsconfig-esm.json && npm run build-browser",
"test": "jest",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build",
"generate-docs": "npx generate-docs",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major"
},
"publishConfig": {},
"dependencies": {
"gl-matrix": "^3.3.0",
"simplex-noise": "^2.4.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@urpflanze/typedoc-docs": "^0.1.15",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"jest": "^27.4.5",
"standard-version": "^9.3.1",
"typescript": "4.2",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2"
},
"googleAnalyticsID": "G-01VM1TGE22"
}