-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
107 lines (107 loc) · 2.97 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "qq-guild-bot",
"version": "2.9.4",
"description": "QQ频道机器人NodeSDK",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"tencent",
"nodejs",
"qq",
"channel",
"guild",
"bot"
],
"files": [
"es",
"lib",
"typings"
],
"module": "es/index.js",
"main": "lib/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"prepare": "husky install",
"dev": "npm run clean & cross-env NODE_ENV=dev rollup -c rollup.config.js -w",
"build": "npm run clean &cross-env NODE_ENV=production rollup -c rollup.config.js",
"lint": "npx eslint \"./**/*.{js,ts}\" --fix",
"format": "prettier --write ./src",
"test": "jest --config jest.config.json",
"example": "cd example && npm run dev",
"publish:npm": "node scripts/publish.js",
"gc": "git-cz",
"gen": "node scripts/gen/index.js",
"release": "standard-version",
"clean": "rimraf lib es typings",
"linkdev": "node scripts/dev.js"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/generator": "^7.17.0",
"@babel/parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@babel/traverse": "^7.17.0",
"@babel/types": "^7.17.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^27.0.2",
"@types/lodash.assignin": "^4.2.6",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"chalk": "^4.1.2",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-alloy": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"handlebars": "^4.7.7",
"husky": "^7.0.1",
"inquirer": "^8.2.0",
"jest": "^25.3.0",
"lint-staged": "^11.1.2",
"lodash.clonedeep": "^4.5.0",
"prettier": "^2.3.2",
"readline-sync": "^1.4.10",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-typescript-paths": "^1.3.0",
"standard-version": "^9.3.1",
"typescript": "^4.4.4"
},
"dependencies": {
"loglevel": "^1.8.0",
"resty-client": "0.0.5",
"ws": "^7.4.4"
},
"resolutions": {
"minimist": "1.2.6",
"ansi-regex": "4.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/tencent-connect/bot-node-sdk.git"
},
"author": "joyqwang",
"license": "MIT",
"homepage": "",
"lint-staged": {
"src/**/*.ts?(x)": [
"eslint --fix",
"prettier --write"
]
}
}