-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
72 lines (72 loc) · 3 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
{
"name": "@webextension-toolbox/webpack-webextension-plugin",
"version": "3.3.1",
"description": "Webpack plugin that compiles web-extension manifest.json files and adds smart auto reload",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "git@github.com:webextension-toolbox/webpack-webextension-plugin.git",
"author": "Henrik Wenz <HaNdTriX@gmail.com> (https://github.com/HaNdTriX)",
"contributors": [
{
"name": "Dávid Balatoni",
"email": "balcsida@gmail.com",
"url": "https://github.com/balcsida"
},
{
"name": "Andrew Nagy",
"url": "https://github.com/tm1000"
}
],
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts ./src",
"build-plugin": "tsc -p ./src/plugin/tsconfig-build.json",
"build-client": "webpack-cli --config ./src/client/webpack.config.js --mode=production",
"build": "concurrently \"npm:build-plugin\" \"npm:build-client\"",
"generate-manifest-schemas": "npm run generate-chrome-manifest-schemav3 && npm run generate-chrome-manifest-schemav2 && npm run generate-browser-manifest-schema",
"generate-manifest-schema": "typescript-json-schema ./src/plugin/tsconfig.json Manifest > ./src/plugin/manifest.schema.json",
"dev-plugin": "tsc -p ./src/plugin/tsconfig.json --watch",
"dev-client": "webpack-cli --config ./src/client/webpack.config.js --watch --mode=development",
"dev": "concurrently \"npm:dev-plugin\" \"npm:dev-client\"",
"generate-chrome-manifest-schemav3": "typescript-json-schema ./src/plugin/tsconfig.json chrome.runtime.ManifestV3 > ./src/plugin/chrome.manifestv3.schema.json",
"generate-chrome-manifest-schemav2": "typescript-json-schema ./src/plugin/tsconfig.json chrome.runtime.ManifestV2 > ./src/plugin/chrome.manifestv2.schema.json",
"generate-browser-manifest-schema": "typescript-json-schema ./src/plugin/tsconfig.json browser._manifest.WebExtensionManifest > ./src/plugin/browser.manifest.schema.json",
"test": "jest"
},
"dependencies": {
"@types/chrome": "^0.0.268",
"@types/firefox-webext-browser": "^120.0.3",
"ajv": "^6.12.6",
"jsonc-parser": "^3.3.1",
"mustache": "^4.2.0",
"webpack-sources": "^3.2.3",
"ws": "^8.16.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/jest": "^29.5.12",
"@types/mustache": "^4.2.5",
"@types/webpack": "^5.28.5",
"@types/webpack-sources": "^3.2.3",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.4.3",
"typescript-json-schema": "^0.63.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=18.0.0"
}
}