-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "unplugin-web-ext",
"version": "1.0.3",
"description": "Simplify web extension creation with Webpack, Rollup, Vite, and esbuild.",
"scripts": {
"build": "tsc",
"test": "cd test && npm run all && ava",
"build-publish": "rm -r dist && npm run build && npm run test && cp package.json dist && cp README.md dist && cp LICENSE dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwr12135/unplugin-web-ext.git"
},
"keywords": [
"plugin",
"webpack",
"rollup",
"vite",
"esbuild",
"unplugin",
"web-ext"
],
"author": "jwr12135",
"license": "MIT",
"bugs": {
"url": "https://github.com/jwr12135/unplugin-web-ext/issues"
},
"homepage": "https://github.com/jwr12135/unplugin-web-ext#readme",
"dependencies": {
"deepmerge": "^4.2.2",
"unplugin": "^0.4.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"ava": "^4.1.0",
"esbuild": "^0.14.25",
"rollup": "^2.70.0",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}