-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
116 lines (116 loc) · 2.87 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "openbmclapi",
"version": "1.13.1",
"description": "bmclapi@home",
"bin": "dist/openbmclapi.js",
"private": true,
"type": "module",
"scripts": {
"test": "true",
"build": "rimraf dist && tsc",
"dev": "tsc-watch --onSuccess \"node --enable-source-maps dist/index.js\"",
"lint": "eslint .",
"prepare": "husky || true"
},
"engines": {
"node": ">=18 <24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bangbang93/openbmclapi.git"
},
"author": "bangbang93 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bangbang93/openbmclapi/issues"
},
"homepage": "https://github.com/bangbang93/openbmclapi#readme",
"dependencies": {
"@bangbang93/service-errors": "^1.1.1",
"@bangbang93/utils": "^6.9.1",
"@mongodb-js/zstd": "^1.2.0",
"@xmcl/nat-api": "^0.4.3",
"avsc": "^5.7.4",
"bluebird": "^3.5.5",
"cli-progress": "^3.12.0",
"colors": "^1.3.3",
"delay": "^6.0.0",
"dotenv": "^16.4.1",
"env-var": "^7.5.0",
"express": "^4.21.2",
"fs-extra": "^8.1.0",
"got": "^14.2.0",
"http2-express-bridge": "^1.0.7",
"ipaddr.js": "^2.2.0",
"json-stringify-safe": "^5.0.1",
"keyv": "^4.5.4",
"keyv-file": "^0.3.0",
"lodash-es": "^4.17.21",
"morgan": "^1.9.1",
"ms": "^2.1.2",
"p-map": "^7.0.1",
"p-retry": "^6.2.0",
"p-timeout": "^6.1.2",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"pretty-bytes": "^6.1.1",
"range-parser": "^1.2.1",
"socket.io-client": "^4.7.4",
"tail": "^2.2.6",
"webdav": "^5.3.1",
"zod": "^3.22.4",
"zod-validation-error": "^3.0.0"
},
"devDependencies": {
"@bangbang93/eslint-config-recommended": "^2.0.0",
"@tsconfig/node18": "^18.2.2",
"@types/bluebird": "^3.5.27",
"@types/cli-progress": "^3.11.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.13",
"@types/fs-extra": "^8.0.0",
"@types/ip": "^1.1.3",
"@types/json-stringify-safe": "^5.0.3",
"@types/lodash-es": "^4.17.7",
"@types/morgan": "^1.7.36",
"@types/ms": "^0.7.30",
"@types/node": "^18.11.17",
"@types/range-parser": "^1.2.7",
"@types/tail": "^2.2.1",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"npm": {
"publish": false
},
"pkg": {
"outputPath": "pkg",
"targets": [
"node16-linux",
"node16-macos",
"node16-windows"
],
"assets": [
"node_modules/**/*.node"
]
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}