-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.73 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
{
"name": "swift-share-dev",
"version": "0.0.0",
"description": "轻量级文本、文件传输工具。简单、快捷、一目了然。",
"main": "src/index.ts",
"type": "module",
"author": "GreatNXY",
"engines": {
"node": ">=16"
},
"scripts": {
"watch": "rollup -c -w",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NXY666/SwiftShare.git",
"branch": "master"
},
"bugs": {
"url": "https://github.com/NXY666/SwiftShare/issues"
},
"license": "MIT",
"keywords": [
"share",
"text",
"file",
"stream",
"blob",
"media",
"audio",
"video",
"upload",
"download"
],
"dependencies": {
"body-parser": "^1.20.2",
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"express": "^4.19.2",
"mime": "^4.0.4",
"multer": "^1.4.5-lts.1",
"photoswipe": "^5.4.4",
"range-parser": "^1.2.1",
"tinyqueue": "^3.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/ws": "^8.5.12",
"core-js": "^3.38.0",
"postcss-import": "^16.1.0",
"rollup": "^4.20.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-watch-assets": "^1.0.1",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"overrides": {
"@types/mime": "4.0.0"
}
}