-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 2.68 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
88
89
90
91
92
{
"name": "@urpflanze/js",
"version": "1.1.5",
"description": "A library for developers who want to approach to creative coding, artists who want to approach coding and for those who find it fun to play with math.",
"license": "GPL-3.0-or-later",
"docs": "https://docs.urpflanze.org/urpflanze",
"keywords": [
"urpflanze",
"creativecoding",
"generativeart",
"plotterart",
"2d",
"mathart",
"typescript"
],
"author": {
"name": "Gennaro Bosone",
"email": "[email protected]",
"url": "https://github.com/genbs"
},
"homepage": "https://docs.urpflanze.org/urpflanze/",
"repository": {
"type": "git",
"url": "https://github.com/genbs/urpflanze.git"
},
"bugs": {
"url": "https://github.com/genbs/urpflanze/issues",
"email": "[email protected]"
},
"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"
}
],
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"browser": "build/umd/urpflanze.js",
"module": "build/esm/urpflanze.js",
"files": [
"build",
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "eslint src --ext .ts",
"build-browser": "npx webpack --config webpack.config.js",
"build": "tsc --p tsconfig.json && tsc --p tsconfig-esm.json && npm run build-browser && npm run build-docs",
"serve-docs": "webpack serve --config webpack.config.docs.js",
"build-docs": "npx webpack --config webpack.config.docs.js --mode production && npx sass ./docs-src/scss/index.scss ./docs/assets/css/app.css --style compressed",
"prepublishOnly": "npm run build",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"publishConfig": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"html-webpack-plugin": "^4.5.0",
"sass": "^1.29.0",
"standard-version": "^9.3.1",
"typedoc": "^0.21.9",
"typescript": "4.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.1.0"
},
"dependencies": {
"@urpflanze/animation": "^0.1.3",
"@urpflanze/color": "^0.0.5",
"@urpflanze/core": "^0.5.9",
"@urpflanze/drawer-canvas": "^0.3.1",
"@urpflanze/gcode-exporter": "^0.0.7",
"@urpflanze/svg-exporter": "^0.0.5",
"@urpflanze/svg-importer": "^0.0.6"
}
}