-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 987 Bytes
/
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
{
"name": "upload",
"description": "An upload tool for Photosphere.",
"main": "src/index.js",
"scripts": {
"s": "pnpm run start",
"sd": "pnpm run start:dev",
"start": "ts-node src/index.ts",
"start:dev": "ts-node-dev --respawn src/index.ts",
"c": "pnpm run compile",
"cw": "pnpm run compile:watch",
"compile": "tsc",
"compile:watch": "tsc --watch --preserveWatchOutput",
"clean": "rm -rf build"
},
"dependencies": {
"axios": "^1.7.2",
"dayjs": "^1.11.7",
"defs": "workspace:*",
"exif-parser": "^0.1.12",
"ffmpeg-ffprobe-static": "^6.1.1",
"fluent-ffmpeg": "^2.1.3",
"fs-extra": "^11.2.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"utils": "workspace:*",
"node-utils": "workspace:*"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/lodash": "^4.17.5",
"@types/node": "^22.9.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
}
}