-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "minyami",
"version": "5.4.0",
"description": "",
"main": "dist/exports.js",
"types": "dist/exports.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Last-Order/Minyami"
},
"scripts": {
"build": "tsc --newLine lf",
"lint": "prettier ./src/**/* --check",
"lint-fix": "prettier ./src/**/* --write",
"prepare": "husky install"
},
"bin": {
"minyami": "./dist/index.js"
},
"files": [
"/dist/"
],
"engines": {
"node": "~16 || ~18 || ~20 || ~21 || ~22"
},
"author": {
"email": "[email protected]",
"name": "Eridanus Sora"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@eridanussora/reconnecting-websocket": "^4.4.2",
"agent-base": "^7.1.0",
"axios": "^1.6.7",
"chalk": "^2.4.2",
"cli-progress": "^3.10.0",
"crypto-js": "^4.2.0",
"erii": "^2.0.6",
"https-proxy-agent": "^7.0.4",
"socks-proxy-agent": "^8.0.2",
"winreg": "^1.2.5",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/node": "^17.0.17",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"typescript": "^5.4.2"
},
"lint-staged": {
"./src/**/*.ts": "npm run lint"
}
}