-
Notifications
You must be signed in to change notification settings - Fork 327
/
package.json
84 lines (84 loc) · 2.42 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
{
"name": "header-editor",
"version": "5.0.0",
"description": "Header Editor",
"author": "ShuangYa",
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/FirefoxBar/HeaderEditor.git"
},
"scripts": {
"start": "icejs start --disable-open --config build.config.js",
"build": "icejs build --config build.config.js",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./",
"eslint:fix": "npm run eslint -- --fix",
"stylelint": "stylelint \"**/*.{css,scss,less}\"",
"release": "node ./scripts/release.mjs",
"pack": "node ./scripts/pack.mjs",
"precommit": "lint-staged"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.1.4",
"@douyinfe/semi-icons": "^2.30.1",
"@douyinfe/semi-ui": "^2.30.1",
"@emotion/css": "^11.10.6",
"@ice/runtime": "^0.1.2",
"@uiw/codemirror-theme-github": "^4.19.9",
"@uiw/react-codemirror": "^4.19.9",
"ahooks": "^3.7.5",
"create-app-shared": "^1.2.6",
"dayjs": "^1.9.5",
"eventemitter3": "^4.0.0",
"fast-deep-equal": "^2.0.1",
"lodash-es": "^4.17.21",
"query-string": "^8.1.0",
"react": "^17.0.0",
"react-app-renderer": "^3.1.0",
"react-dom": "^17.0.0",
"regenerator-runtime": "^0.13.11",
"text-encoding": "^0.7.0",
"tslib": "^2.5.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@iceworks/spec": "^1.0.0",
"@plasmo-corp/ewu": "^0.6.0",
"@types/chrome": "^0.0.72",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.15.5",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/text-encoding": "^0.0.35",
"@types/webextension-polyfill": "^0.10.0",
"build-plugin-css-assets-local": "^0.1.0",
"copy-webpack-plugin": "^11.0.0",
"crx": "^5.0.1",
"eslint": "^7.30.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unused-imports": "^2.0.0",
"fs-extra": "^11.1.1",
"husky": "^3.1.0",
"ice.js": "^2.0.0",
"lint-staged": "^9.5.0",
"node-fetch": "^3.3.1",
"prettier": "^1.19.1",
"publish-release": "^1.6.0",
"sign-addon": "^6.0.0",
"stylelint": "^13.7.2",
"typescript": "^3.7.3",
"webpack-bundle-analyzer": "^4.8.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"eslint --cache --fix",
"git add"
]
}
}