-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.09 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.09 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
{
"name": "onsight",
"version": "0.0.6",
"description": "Easy to use 2D / 3D JavaScript game engine.",
"module": "src/Onsight.js",
"main": "build/onsight.module.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"files": [
"src/*",
"build/*"
],
"keywords": [
"onsight",
"game",
"engine",
"webgl",
"javascript",
"graphics"
],
"repository": {
"type": "git",
"url": "git+https://github.com/scidian/onsight.git"
},
"author": "Stephens Nunnally <stephens@scidian.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/scidian/onsight/issues"
},
"homepage": "https://github.com/scidian",
"devDependencies": {
"javascript-obfuscator": "^4.0.0",
"jsdoc": "~4.0.0",
"rollup": "^2.58.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-obfuscator": "^0.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.8.3"
},
"private": false,
"dependencies": {
"@dimforge/rapier3d-compat": "0.16.0",
"three": ">=0.148.0"
}
}