-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 971 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 971 Bytes
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
{
"name": "threejs-mirror",
"version": "1.3.0",
"description": "定期从GitHub拉取Three.js源码并提供本地化文档、示例、编辑器等...",
"main": "dist/index.js",
"scripts": {
"build-ts": "tsc",
"start": "npm run build-ts && node dist/index.js",
"sync": "npm run build-ts && node dist/sync/sync.js",
"build": "npm run build-ts && node dist/server/build.js",
"server": "npm run build-ts && node dist/server/server.js"
},
"keywords": [
"threejs",
"mirror",
"sync",
"github"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"node-cron": "^3.0.2",
"simple-git": "^3.19.1",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/express": "^4.17.25",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.19.25",
"@types/node-cron": "^3.0.11",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=14.0.0"
}
}