-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "el-bot-plugins",
"version": "1.0.0",
"private": true,
"workdpaces": [
"packages/*"
],
"description": "[el-bot](https://github.com/YunYouJun/el-bot/) 可用的官方插件。",
"main": "index.js",
"scripts": {
"lerna": "lerna",
"bootstrap": "lerna bootstrap",
"prebuild": "lerna exec -- npm install",
"build": "lerna exec -- npm run build --if-present",
"clean": "lerna exec -- rm -rf dist",
"link": "lerna exec -- yarn link",
"lint": "eslint --fix . && prettier --write .",
"prepublishOnly": "lerna run build",
"publish": "lerna publish",
"publish:force": "lerna publish from-git --force-publish --no-git-tag-version --no-push --yes",
"release": "lerna publish --conventional-commits",
"watch": "tsc --watch",
"generate:TOC": "node scripts/generateTOC.js"
},
"husky": {
"hooks": {
"pre-commit": "yarn generate:TOC && lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElpsyCN/el-bot-plugins.git"
},
"author": {
"name": "YunYouJun",
"url": "https://www.yunyoujun.cn",
"email": "me@yunyoujun.cn"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ElpsyCN/el-bot-plugins/issues"
},
"homepage": "https://github.com/ElpsyCN/el-bot-plugins#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"el-bot": "^0.5.20",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"husky": "^4.3.5",
"js-yaml": "^3.14.1",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}