-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "onsight",
"version": "0.0.9",
"description": "Interactive, easy to use JavaScript game framework.",
"module": "src/Onsight.js",
"main": "dist/onsight.module.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"files": [
"dist/*",
"files/*",
"src/*"
],
"keywords": [
"onsight",
"game",
"engine",
"webgl",
"javascript",
"graphics",
"framework",
"canvas"
],
"repository": {
"type": "git",
"url": "git+https://github.com/onsightengine/onsight.git"
},
"author": "Stephens Nunnally <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/onsightengine/onsight/issues"
},
"homepage": "https://github.com/onsightengine",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-visualizer": "^5.12.0"
}
}