-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.46 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
{
"name": "webpack-target-webextension",
"version": "2.1.3",
"type": "commonjs",
"description": "WebExtension plugin for Webpack. Supports code-splitting and dynamic import.",
"keywords": [
"webpack",
"webextension",
"extension",
"target",
"dynamic-import",
"code-splitting",
"chrome",
"firefox",
"chrome-extension",
"firefox-extension",
"rspack"
],
"scripts": {
"test": "vitest build.test.mts",
"test-ci": "node ./tests/ci.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/crimx/webpack-target-webextension.git"
},
"author": "CRIMX <[email protected]>",
"maintainers": [
{
"name": "Jack Works",
"url": "https://github.com/Jack-Works"
},
{
"name": "CRIMX",
"email": "[email protected]"
}
],
"license": "MIT",
"engines": {
"node": ">=18.20.5"
},
"devDependencies": {
"@rspack/core": "^1.1.6",
"@types/jest": "^29.5.14",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "^2.1.8",
"copy-webpack-plugin": "^12.0.2",
"prettier": "^3.4.2",
"vitest": "^2.1.8",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0",
"webpack-target-webextension": "link:."
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"files": [
"lib",
"index.js",
"index.d.ts"
],
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}