forked from yomotsu/camera-controls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·84 lines (84 loc) · 1.84 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
{
"name": "camera-controls",
"version": "1.34.3",
"author": "Yomotsu",
"license": "MIT",
"main": "dist/camera-controls.js",
"jsnext:main": "dist/camera-controls.module.js",
"module": "dist/camera-controls.module.js",
"types": "dist/index.d.ts",
"repository": "yomotsu/camera-controls",
"devDependencies": {
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"downlevel-dts": "^0.9.0",
"eslint": "^8.14.0",
"eslint-config-mdcs": "^5.0.0",
"rollup": "^2.70.2",
"rollup-plugin-typescript2": "^0.31.2",
"terser": "^5.12.1",
"three": "^0.138.2",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"peerDependencies": {
"three": ">=0.126.1"
},
"scripts": {
"dev": "rollup --config --watch",
"build": "rollup --config && terser dist/camera-controls.js -o dist/camera-controls.min.js --comments '/^!/' && downlevel-dts . .",
"lint": "eslint src --ext ts",
"typedoc": "typedoc"
},
"browserslist": [
"last 3 versions",
"not ie <= 11"
],
"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
],
"key-spacing": [
0
]
}
},
"eslintIgnore": [
"/dist/",
"/node_modules/"
],
"typesVersions": {
"<=3.4.0-0": {
"*": [
"./"
]
}
},
"keywords": [
"three",
"three.js",
"orbit",
"controls",
"OrbitControls",
"camera"
]
}