-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "crx-pack-webpack-plugin",
"version": "1.1.1",
"description": "A webpack5 plugin to pack crx",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"compile": "tsc",
"eslint:check": "eslint src",
"eslint:fix": "eslint --fix src",
"prettier:check": "prettier --check src",
"prettier:format": "prettier --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaze-k/crx-pack-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"crx3",
"node"
],
"author": "kaze-k <kerkaze@outlook.com> (https://github.com/kaze-k)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaze-k/crx-pack-webpack-plugin/issues"
},
"homepage": "https://github.com/kaze-k/crx-pack-webpack-plugin",
"peerDependencies": {
"webpack": ">=5.0.0"
},
"dependencies": {
"colors-console": "^1.0.3",
"crx3": "^1.1.3",
"mkdirp": "^3.0.1"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
}
}