-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
61 lines (61 loc) · 1.34 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
{
"name": "wgsl_reflect",
"version": "1.0.16",
"description": "WGSL Parser and Reflection library",
"author": "Brendan Duncan",
"license": "MIT",
"module": "wgsl_reflect.module.js",
"main": "wgsl_reflect.node.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/brendan-duncan/wgsl_reflect"
},
"homepage": "https://github.com/brendan-duncan/wgsl_reflect",
"bugs": {
"url": "https://github.com/brendan-duncan/wgsl_reflect/issues"
},
"sideEffects": false,
"files": [
"wgsl_reflect.module.js",
"wgsl_reflect.node.js",
"LICENSE.md",
"package.json",
"README.md",
"wgsl",
"types"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"watch": "npm run watch:js",
"watch:js": "rollup -c rollup.config.js --watch"
},
"keywords": [
"wgsl_reflect",
"webgpu",
"wgsl",
"javascript",
"html5"
],
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"rollup": "^2.60.0",
"tslib": "^2.6.1",
"typescript": "^5.3.3"
},
"jspm": {
"files": [
"package.json",
"LICENSE.md",
"README.md",
"wgsl_reflect.module.js",
"wgsl_reflect.module.js.map",
"wgsl_reflect.node.js",
"wgsl_reflect.node.js.map",
"types"
]
}
}