-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·74 lines (74 loc) · 1.92 KB
/
package.json
File metadata and controls
executable file
·74 lines (74 loc) · 1.92 KB
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
{
"name": "camera-proxy",
"version": "0.1.28-alpha",
"main": "dist/camera-proxy.min.js",
"module": "dist/modules/index.js",
"types": "dist/modules/index.d.ts",
"author": "Simon <gaomeng1900@gamil.com>",
"description": "Cross-platform 3D Camera Controller | 通用相机系统",
"homepage": "https://github.com/alibaba/camera-proxy",
"repository": "https://github.com/alibaba/camera-proxy.git",
"license": "MIT",
"files": [
"package.json",
"LICENSE",
"README.md",
"dist/**",
"src/*"
],
"dependencies": {
"@types/hammerjs": "^2.0.36",
"hammerjs": "^2.0.8",
"paho-mqtt": "1.1.0"
},
"peerDependencies": {
"ani-timeline": "alpha"
},
"devDependencies": {
"ani-timeline": "alpha",
"babel-eslint": "^10.0.1",
"compression": "^1.7.3",
"dimbin": "^0.3.6",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"express": "^4.16.3",
"jest": "^24.8.0",
"pug": ">=3.0.1",
"three": "^0.132.2",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.1.3",
"webpack": "^5.88.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.1",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"compile": "./node_modules/typescript/bin/tsc && cp -rf src/math dist/modules/math",
"dist": "npm run compile && webpack --config webpack.config.prod.js && webpack --config webpack.config.standalone.js && npm run test",
"start": "node --max-old-space-size=8192 server.js",
"test": "jest",
"autofix": "eslint --fix ./",
"lint": "eslint ./",
"doc": "typedoc --plugin typedoc-plugin-markdown",
"v": "webpack -v"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"post-merge": "tnpm install",
"pre-commit": "lint-staged"
}
}
}