-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
85 lines (85 loc) · 1.9 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
{
"name": "mirai-ts",
"type": "module",
"version": "2.4.8",
"packageManager": "[email protected]",
"description": "Mirai TypeScript SDK",
"author": {
"name": "YunYouJun",
"email": "[email protected]",
"url": "https://www.yunyoujun.cn"
},
"license": "AGPL-3.0",
"homepage": "https://yunyoujun.github.io/mirai-ts/",
"repository": {
"type": "git",
"url": "https://github.com/YunYouJun/mirai-ts"
},
"keywords": [
"mirai",
"http",
"api",
"sdk",
"typescript",
"node",
"js"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts",
"demo": "node demo/index.js",
"demo:ts": "tsx watch demo/index.ts",
"dev": "npm run watch",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"docs:build": "typedoc",
"docs:dev": "cd docs && live-server",
"lint": "eslint .",
"mcl": "cd mcl && ./mcl",
"watch": "tsup src/index.ts --watch",
"release": "bumpp --commit --push --tag",
"test": "tsx watch test/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"axios": "^1.7.7",
"chalk": "4",
"consola": "^3.2.3",
"form-data": "^4.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.7.4",
"@types/ws": "^8.5.12",
"bumpp": "^9.6.1",
"dotenv": "^16.4.5",
"eslint": "^9.11.1",
"husky": "8.0.3",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "6.7.0",
"tsx": "^4.19.1",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}