-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"name": "minyami",
"version": "6.0.0-beta.4",
"description": "",
"main": "./dist/exports.mjs",
"types": "./dist/exports.d.mts",
"exports": {
".": {
"types": "./dist/exports.d.mts",
"import": "./dist/exports.mjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Last-Order/Minyami"
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "prettier ./src/**/* ./test/**/* ./jest.config.js ./tsdown.config.mjs ./tsconfig*.json ./.github/workflows/*.yml --check",
"lint-fix": "prettier ./src/**/* ./test/**/* ./jest.config.js ./tsdown.config.mjs ./tsconfig*.json ./.github/workflows/*.yml --write",
"prepare": "husky install"
},
"bin": {
"minyami": "./dist/index.mjs"
},
"files": [
"/dist/"
],
"engines": {
"node": ">=24"
},
"author": {
"email": "sora@sound.moe",
"name": "Eridanus Sora"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"agent-base": "^9.0.0",
"axios": "^1.19.0",
"chalk": "^6.0.0",
"erii": "^2.0.6",
"https-proxy-agent": "^9.1.0",
"prompts": "^2.4.2",
"socks-proxy-agent": "^10.1.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.13.3",
"@types/prompts": "^2.4.9",
"husky": "^7.0.2",
"jest": "^30.4.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-jest": "^29.4.12",
"tsdown": "^0.22.14",
"typescript": "^6.0.3"
},
"lint-staged": {
"./{src,test}/**/*.ts": "npm run lint"
}
}