This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.16 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
{
"name": "xianyu-robot",
"version": "4.18.0",
"description": "使用HTTP API的node机器人框架",
"main": "lib/index.js",
"scripts": {
"dev": "nodemon --ext js,ts --exec ts-node test",
"build": "rimraf lib && tsc && gulp copy",
"release": "semantic-release",
"rm": "rimraf node_modules",
"push": "npm run build && npm publish",
"lint": "eslint src --ext .ts",
"changelog": "conventional-changelog -p cmyr-config -i CHANGELOG.md -s -r 0",
"docs": "rimraf docs && typedoc src/ --out ./docs"
},
"author": "Blacktunes",
"license": "GPL-3.0",
"keywords": [
"qq-robot",
"go-cqhttp",
"node",
"typescript",
"cqhttp"
],
"repository": "https://github.com/blacktunes/xianyu-robot",
"bugs": {
"url": "https://github.com/blacktunes/xianyu-robot/issues"
},
"homepage": "https://blacktunes.github.io/xianyu-robot-doc/",
"files": [
"lib",
"src"
],
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/fs-extra": "^9.0.11",
"@types/lodash": "^4.14.172",
"@types/mysql": "^2.15.15",
"@types/named-regexp-groups": "^1.0.0",
"@types/node": "^14.0.23",
"@types/node-os-utils": "^1.2.0",
"@types/node-schedule": "^1.3.0",
"@typescript-eslint/parser": "^4.6.1",
"conventional-changelog-cli": "^2.1.1",
"conventional-changelog-cmyr-config": "^1.2.3",
"eslint": "^7.13.0",
"eslint-plugin-typescript": "^0.14.0",
"gulp": "^4.0.2",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"ts-node": "^8.10.2",
"typedoc": "^0.20.35",
"typedoc-plugin-markdown": "^3.7.1",
"typescript": "^3.9.6"
},
"dependencies": {
"colors": "^1.4.0",
"fs-extra": "^9.0.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"moment": "^2.27.0",
"mysql": "^2.18.1",
"named-regexp-groups": "^1.0.5",
"node-os-utils": "^1.3.5",
"node-schedule": "^1.3.2",
"node-yaml": "^4.0.1",
"websocket": "^1.0.32"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"changelog": {
"language": "zh",
"authorName": false
}
}