-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.33 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.33 KB
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
{
"name": "@absulit/points",
"version": "0.7.0",
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"description": "A Generative Art library made in WebGPU",
"main": "build/points.min.js",
"files": [
"build/",
"src/",
"LICENSE",
"README.md"
],
"directories": {
"src": "src",
"doc": "docs",
"build": "build",
"example": "examples",
"img": "img"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "sh build.sh",
"jsdoc": "npx jsdoc -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Absulit/points.git"
},
"keywords": [
"javascript",
"webgpu",
"creative-coding",
"shaders",
"generative-art",
"genart",
"wgsl"
],
"author": "absulit",
"license": "MIT",
"bugs": {
"url": "https://github.com/Absulit/points/issues"
},
"homepage": "https://github.com/Absulit/points#readme",
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-swc": "^0.4.0",
"@swc/cli": "^0.7.8",
"@swc/core": "^1.13.3",
"@swc/helpers": "^0.5.17",
"@webgpu/types": "^0.1.64",
"docolatte": "^4.5.1",
"jsdoc": "^4.0.4",
"jsr": "^0.13.5",
"rollup": "^4.46.2",
"typescript": "^5.9.2"
}
}