-
-
Notifications
You must be signed in to change notification settings - Fork 263
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
{
"name": "camera-controls",
"version": "0.0.0-semantic-release",
"author": "Yomotsu",
"license": "MIT",
"main": "dist/camera-controls.cjs",
"module": "dist/camera-controls.module.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "yomotsu/camera-controls",
"devDependencies": {
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/three": "^0.171.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"downlevel-dts": "^0.11.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"rollup": "^4.29.0",
"semantic-release": "^23.1.1",
"serve": "^14.2.4",
"terser": "^5.37.0",
"three": "^0.171.0",
"tslib": "^2.8.1",
"typedoc": "^0.27.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"three": ">=0.126.1"
},
"scripts": {
"prepare": "husky install",
"dev": "npm-run-all -p dev:*",
"dev:rollup": "rollup --config --watch",
"dev:serve": "serve -S -p 3000 ./ && kill $!",
"dev:open": "open-cli http://localhost:3000/examples/",
"build": "rollup --config && terser dist/camera-controls.module.js -o dist/camera-controls.module.min.js --comments '/^!/' && downlevel-dts . .",
"prepack": "npm run build",
"lint": "eslint src",
"typedoc": "typedoc",
"release": "semantic-release"
},
"browserslist": [
"> 1%",
"last 3 versions",
"not dead"
],
"typesVersions": {
"<=3.4.0-0": {
"*": [
"./"
]
}
},
"keywords": [
"three",
"three.js",
"orbit",
"controls",
"OrbitControls",
"camera"
]
}