-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 855 Bytes
/
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
{
"name": "@derschmale/spirv4web",
"version": "0.2.0",
"main": "build/spirv4web.js",
"module": "build/spirv4web.module.js",
"types": "./build/types/main.d.ts",
"files": [
"build/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/DerSchmale/spirv4web.git"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w"
},
"license": "MIT",
"keywords": [
"spirv",
"3d",
"compiler",
"shaders",
"webgl",
"webgl2"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.64.0",
"rollup-plugin-typescript2": "^0.31.1",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"dependencies": {
"@derschmale/array-utils": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1"
}
}