-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.95 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
{
"name": "mizuki-sdk",
"description": "A plugin-in qq bot sdk",
"version": "1.0.0",
"module": "es/index.js",
"main": "lib/index.js",
"types": "typings/index.d.ts",
"files": [
"es",
"lib",
"typings"
],
"dependencies": {
"node-color-log": "^12.0.1",
"qb-sdk": "^1.1.4",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.25.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.7",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"cross-env": "^7.0.3",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"node": "^22.10.0",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-typescript-paths": "^1.5.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typescript": "^5.6.3"
},
"scripts": {
"test": "node --loader ts-node/esm ./test/main.ts",
"build": "npm run clean &cross-env NODE_ENV=production rollup -c rollup.config.js",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"clean": "rimraf lib es tyings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hanasa2023/ena-mizuki.git"
},
"author": "hanasaki",
"license": "MIT",
"homepage": "https://github.com/hanasa2023/ena-mizuki#readme",
"bugs": {
"url": "https://github.com/hanasa2023/ena-mizuki/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"nodejs",
"qq",
"bot"
]
}