forked from lyswhut/lx-music-sync-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "lx-music-sync-server",
"version": "1.4.0",
"private": true,
"scripts": {
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"start": "node ./index.js",
"dev": "nodemon",
"prd": "pm2 start ecosystem.config.js --env production",
"publish": "node publish"
},
"engines": {
"node": ">= 16",
"npm": ">= 8.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyswhut/lx-music-sync-server.git"
},
"author": {
"name": "lyswhut",
"email": "lyswhut@qq.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lyswhut/lx-music-sync-server/issues"
},
"homepage": "https://github.com/lyswhut/lx-music-sync-server#readme",
"dependencies": {
"bufferutil": "^4.0.7",
"log4js": "^6.9.1",
"lru-cache": "^9.1.2",
"utf-8-validate": "^6.0.3",
"ws": "^8.13.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.4",
"@types/ws": "^8.5.4",
"chalk": "^4.1.2",
"changelog-parser": "^3.0.1",
"eslint-config-standard-with-typescript": "^35.0.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
},
"nodemonConfig": {
"ext": "js,ts",
"ignore": [],
"exec": "node -r ts-node/register -r tsconfig-paths/register ./src/index.ts"
}
}