forked from yomotsu/meshwalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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
{
"name": "meshwalk",
"version": "0.0.0",
"author": "Yomotsu",
"license": "MIT",
"main": "dist/meshwalk.js",
"repository": "yomotsu/meshwalk.js",
"jsnext:main": "dist/meshwalk.module.js",
"module": "dist/meshwalk.module.js",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.2",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.26.3",
"terser": "^5.2.0"
},
"scripts": {
"dev": "rollup --config --watch",
"build": "rollup --config && terser dist/meshwalk.js -o dist/meshwalk.min.js --comments '/^!/'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserslist": [
"ie >= 11",
"safari >= 9",
"ios >= 9",
"Android >= 5"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": false
}
]
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
},
"keywords": [
"three",
"three.js",
"tps",
"game",
"collision",
"physics"
],
"dependencies": {
"camera-controls": "^1.22.1"
}
}