-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "@jeffpalmer/genart-platforms",
"version": "0.4.0",
"description": "genart-platforms provides an abstraction layer over common generative art platforms.",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"prebuild": "$npm_execpath run clean",
"build": "tsc",
"prepack": "$npm_execpath run build",
"preversion": "$npm_execpath run build",
"postversion": "git push --follow-tags"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JeffreyPalmer/genart-platforms.git"
},
"keywords": [
"generative",
"genart",
"creativecoding",
"platform",
"abstraction"
],
"author": "Jeff Palmer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JeffreyPalmer/genart-platforms/issues"
},
"homepage": "https://github.com/JeffreyPalmer/genart-platforms#readme",
"devDependencies": {
"@fxhash/project-sdk": "^0.0.12",
"@thi.ng/random": "^3.6.18",
"@tsconfig/recommended": "1.0.3",
"prettier": "3.1.1",
"rimraf": "^5.0.1",
"typescript": "5.3.3"
},
"dependencies": {
"@jeffpalmer/genart-random": "^0.3.0"
}
}