-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.26 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
{
"name": "bobplug-nbnhhsh",
"version": "0.0.5",
"description": "拼音首字母缩写释义工具",
"homepage": "https://github.com/roojay520/bobplug-nbnhhsh",
"repository": "https://github.com/roojay520/bobplug-nbnhhsh.git",
"author": "roojay520",
"license": "MIT",
"main": "src/main.js",
"keywords": [
"bobplugin",
"translate"
],
"scripts": {
"clear": "rimraf ./dist && rimraf ./release",
"initInfo": "node ./scripts/init-info.js",
"install": "npm run initInfo",
"dev": "cross-env NODE_ENV=development rollup -c rollup.config.js --watch",
"build": "npm run clear && npm run initInfo && cross-env NODE_ENV=production rollup -c && node ./scripts/build-zip.js",
"type-check": "tsc --noEmit --allowJs",
"type-check:watch": "tsc --noEmit --allowJs --watch",
"prettier:fix": "prettier --config .prettierrc.js --write .",
"eslint": "eslint . -c .eslintrc.js --ext .ts,.tsx,.js",
"eslint:fix": "eslint . -c .eslintrc.js --fix --ext .ts,.tsx,.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "npm run initInfo && npm run changelog && git add CHANGELOG.md src/info.json"
},
"dependencies": {
"@bob-plug/core": "^0.1.3",
"is-english": "^1.3.0",
"querystring": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"adm-zip": "^0.5.5",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"esbuild": "^0.12.15",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.52.8",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-esbuild": "^4.5.0",
"rollup-plugin-polyfill-node": "^0.6.2",
"typescript": "^4.3.5"
}
}