-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "w-gl",
"version": "0.21.1",
"description": "A simple WebGL renderer",
"main": "build/wgl.js",
"module": "build/wgl.module.js",
"jsdelivr": "build/wgl.js",
"unpkg": "build/wgl.js",
"scripts": {
"build": "rm -rf build && rollup -c",
"start": "rm -rf build && rollup -c",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"webgl",
"renderer",
"2d"
],
"author": "Andrei Kashcha",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anvaka/wgl"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.7.4"
},
"dependencies": {
"amator": "^1.1.0",
"gl-matrix": "^3.4.0",
"ngraph.events": "1.2.1",
"ngraph.graph": "^20.0.0"
}
}