forked from abhijithvijayan/wext-manifest-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.22 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
{
"name": "@interc0der/wext-manifest-webpack-plugin",
"version": "0.0.3",
"description": "Webpack plugin to solve the problem of generating js file for manifest.json entry",
"license": "GNU GPL-3.0",
"repository": "https://github.com/interc0der/wext-manifest-webpack-plugin.git",
"author": {
"name": "interc0der",
"email": "dev@whirled.io",
"url": "https://github.com/interc0der/"
},
"engines": {
"node": ">=10.0.0"
},
"main": "dist/js/src/index.js",
"types": "lib",
"files": [
"dist"
],
"publishConfig": {
"@interc0der:registry": "https://npm.pkg.github.com"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"pack:list": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"prepublishOnly": "yarn build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"keywords": [
"webextension",
"manifest",
"webpack",
"plugin",
"wext",
"chrome",
"firefox",
"edge",
"opera"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/loader-utils": "^2.0.3",
"@types/node": "^17.0.27",
"@types/webpack": "^5.28.0",
"jest": "^28.0.0",
"prettier": "^2.0.5",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.72.0"
}
}