-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 926 Bytes
/
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
{
"name": "crx3-webpack-plugin",
"type": "module",
"version": "1.0.23",
"description": "a webpack plugin for crx3",
"main": "dist/bundle.js",
"repository": "https://github.com/garrettlr/crx3-webpack-plugin.git",
"author": "Garrett Levy <[email protected]>",
"license": "MIT",
"keywords": [
"crx",
"chrome extension",
"chrome extension 3",
"manifest 3",
"chrome extension webpack plugin",
"crx3",
"crx3-webpack-plugin"
],
"engines": {
"node": ">=11.0.0"
},
"scripts": {
"build": "NODE_ENV=production ./node_modules/.bin/rollup -c",
"start": "NODE_ENV=development node --experimental-modules src/main.js"
},
"dependencies": {
"crx3": "https://github.com/garrettlr/crx3#db91dc9a3f2e669afd554a7f24fcb0dcc2c9c21e"
},
"devDependencies": {
"rollup": "^1.20.3",
"webpack": "^4.39.0"
},
"peerDependencies": {
"webpack": "^4.39.0"
}
}