-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
88 lines (88 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "meshwalk",
"version": "0.0.0",
"author": "Yomotsu",
"license": "MIT",
"type": "module",
"main": "dist/meshwalk.js",
"module": "dist/meshwalk.module.js",
"repository": {
"type": "git",
"url": "https://github.com/yomotsu/meshwalk"
},
"scripts": {
"dev": "rollup --config --watch",
"build": "rollup --config && terser dist/meshwalk.js -o dist/meshwalk.min.js --comments '/^!/' && terser dist/meshwalk.module.js -o dist/meshwalk.module.min.js --comments '/^!/'",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@types/three": "^0.150.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-mdcs": "^5.0.0",
"lint-staged": "^13.2.2",
"rollup": "^3.21.0",
"terser": "^5.17.1",
"typescript": "^5.0.4"
},
"dependencies": {
"camera-controls": "^2.3.4"
},
"peerDependencies": {
"three": "^0.151.3"
},
"browserslist": [
"> 1%",
"last 3 versions",
"not dead"
],
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"extends": "mdcs",
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-unused-vars": 0,
"@typescript-eslint/no-unused-vars": 1,
"indent": 0,
"@typescript-eslint/indent": [
"error",
"tab",
{
"SwitchCase": 1,
"flatTernaryExpressions": true
}
],
"no-multi-spaces": [
0
],
"no-trailing-spaces": [
"error",
{
"ignoreComments": true
}
],
"key-spacing": [
0
]
}
},
"eslintIgnore": [
"/dist/",
"/node_modules/"
],
"keywords": [
"three",
"three.js",
"tps",
"game",
"collision",
"physics"
]
}