-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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-random",
"version": "0.3.0",
"description": "genart-random provides a safe way to use deterministic random number generators across 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-random.git"
},
"keywords": [
"generative",
"genart",
"creativecoding",
"platform",
"abstraction"
],
"author": "Jeff Palmer <jeffrey.palmer@acm.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JeffreyPalmer/genart-random/issues"
},
"homepage": "https://github.com/JeffreyPalmer/genart-random#readme",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"prettier": "3.1.1",
"rimraf": "^5.0.1",
"typescript": "5.3.3"
},
"dependencies": {
"@thi.ng/arrays": "^2.5.13",
"@thi.ng/random": "^3.4.2",
"simplex-noise": "^4.0.1"
}
}