-
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.32 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.32 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.10.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": "7.0.0",
"@rollup/plugin-swc": "0.4.0",
"@swc/cli": "0.8.1",
"@swc/core": "1.15.40",
"@swc/helpers": "0.5.21",
"@webgpu/types": "0.1.70",
"docolatte": "4.5.1",
"jsdoc": "4.0.5",
"jsr": "0.14.3",
"rollup": "4.60.4",
"typescript": "6.0.3"
}
}