-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "file-sync",
"version": "5.4.3",
"description": "基于node开发的一个多端文件/文字同步工具",
"author": "NoRain",
"bin": "dist/server/index.js",
"main": "dist/server/index.js",
"scripts": {
"watch": "concurrently \"npx webpack -w\" \"tsc --project ./tsconfig.common.json -w\" \"tsc --project ./tsconfig.es6.json -w\" \"nodemon ./dist/server/index.js\"",
"copy": "node ./plugins/copyFile.js",
"build": "tsc --project ./tsconfig.common.json && tsc --project ./tsconfig.es6.json && npx webpack",
"debug": "node --trace-warnings ./dist/server/index.js",
"rcedit": "node ./plugins/rcedit.js",
"exec": "node ./plugins/pkg.js",
"up": "node ./plugins/changeVersion.js",
"clean": "node ./plugins/cleanCache.js"
},
"keywords": [
"fileSnyc",
"file",
"sync",
"server",
"text",
"textSync",
"textSyncServer",
"fileSyncServer",
"fileSync",
"textSyncServer"
],
"license": "MIT",
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.2.1",
"@types/qrcode": "^1.5.5",
"@types/ws": "^8.5.10",
"common-js": "^0.3.8",
"concurrently": "^8.2.2",
"css-loader": "^7.1.1",
"nodemon": "^2.0.22",
"pkg": "^5.8.1",
"rcedit": "^4.0.1",
"sass": "^1.77.1",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"webpack-obfuscator": "^3.5.1"
},
"dependencies": {
"@picocss/pico": "^2.0.6",
"clipboard": "^2.0.11",
"compression": "^1.7.4",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"open": "^6.4.0",
"qrcode": "^1.5.3",
"sqlite3": "^5.1.7",
"ws": "^8.15.1"
}
}