-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.88 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "lx-music-sync-server",
"version": "1.9.4",
"private": true,
"scripts": {
"prebuild": "node scripts/download-binary.js && node scripts/update-build-hash.js",
"build": "rimraf server && tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"prestart": "node scripts/download-binary.js && node scripts/update-build-hash.js",
"start": "node ./index.js",
"predev": "node scripts/update-build-hash.js",
"dev": "nodemon",
"predev1": "node scripts/update-build-hash.js",
"dev1": "nodemon --exec \"tsx --inspect=127.0.0.1:9301 ./src/index.ts\"",
"predev2": "node scripts/update-build-hash.js",
"dev2": "nodemon --exec \"cmd /c start /affinity 1 /b /wait tsx --inspect=127.0.0.1:9302 ./src/index.ts\"",
"prd": "pm2 start ecosystem.config.js --env production",
"publish": "node publish",
"electron:build": "npm run build",
"electron:dist": "npm run electron:build && electron-builder"
},
"engines": {
"node": ">= 16",
"npm": ">= 8.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XCQ0607/lxserver.git"
},
"author": {
"name": "XCQ",
"email": "2406498704@qq.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/XCQ0607/lxserver/issues"
},
"homepage": "https://github.com/XCQ0607/lxserver#readme",
"dependencies": {
"@foobar404/wave": "^2.0.5",
"@types/formidable": "^3.5.1",
"archiver": "^7.0.1",
"brace-expansion": "^5.0.6",
"bufferutil": "^4.0.8",
"crypto-js": "^4.2.0",
"file-type": "^22.0.1",
"formidable": "^3.5.4",
"log4js": "^6.9.1",
"lru-cache": "^10.0.1",
"message2call": "0.1.3",
"module-alias": "^2.3.4",
"music-tag-native": "^0.2.4",
"needle": "^3.3.1",
"socks-proxy-agent": "^10.0.0",
"tunnel": "^0.0.6",
"unzipper": "^0.12.3",
"utf-8-validate": "^6.0.6",
"vm2": "^3.11.4",
"webdav": "^5.9.0",
"ws": "8.20.1"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.1",
"@tsconfig/recommended": "^1.0.13",
"@types/archiver": "^7.0.0",
"@types/module-alias": "^2.0.4",
"@types/needle": "^3.3.0",
"@types/tunnel": "^0.0.7",
"@types/unzipper": "^0.10.11",
"@types/ws": "8.5.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chalk": "^4.1.2",
"changelog-parser": "^3.0.1",
"electron": "^42.0.0",
"electron-builder": "^26.8.1",
"eslint-config-love": "^47.0.0",
"nodemon": "^3.1.14",
"rimraf": "^5.0.5",
"sharp": "^0.33.4",
"stylelint": "^17.6.0",
"stylelint-config-standard": "^40.0.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
},
"nodemonConfig": {
"ext": "js,ts",
"ignore": [
"data/",
"logs/",
"config.js"
],
"exec": "npx tsx ./src/index.ts"
}
}