-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
{
"type": "module",
"name": "cl3d",
"version": "0.1.5",
"description": "CopperLicht in Node.js and browser ",
"keywords": [
"nodejs",
"webgl",
"multi-platform",
"browser",
"canvas",
"es6-modules",
"copperlicht",
"cl3d"
],
"maintainers": [
"Watunder (https://github.com/Watunder)"
],
"contributors": [
"Nikolaus Gebhardt (https://x.com/ambiera)",
"Watunder (https://github.com/Watunder)"
],
"license": "See license in LICENSE.md",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:Watunder/Node-CL3D.git"
},
"main": "./dist/cl3d.js",
"scripts": {
"build": "npx rollup -c",
"test-sdl": "set SDL_ENV=develop && cd scripts && node test-sdl.js",
"test-raub": "set RAUB_ENV=develop && cd scripts && node test-raub.js",
"bpkg": "cd scripts && node bpkg.js",
"install": "cd scripts && node install.js",
"release": "cd scripts && node release.js"
},
"dependencies": {
"@kmamal/gl": "*",
"@kmamal/sdl": "*",
"canvas": "*",
"file-fetch": "*",
"nc-screen": "*"
},
"devDependencies": {
"@rollup/plugin-replace": "*",
"@rollup/plugin-terser": "*",
"@typhonjs-build-test/esm-d-ts": "*",
"bpkg": "*",
"jest": "*",
"minimist": "*",
"rollup": "*"
},
"optionalDependencies": {
"3d-core-raub": "*"
}
}