extension-develop 3.12.0 → 3.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/{890.cjs → 264.cjs} +179 -4770
- package/dist/324.cjs +21 -3
- package/dist/extension-js-devtools/chrome/background/service_worker.js +1 -1
- package/dist/extension-js-devtools/chromium/background/service_worker.js +1 -1
- package/dist/extension-js-devtools/edge/background/service_worker.js +1 -1
- package/dist/extension-js-devtools/firefox/background/scripts.js +1 -1
- package/dist/module.cjs +349 -5644
- package/dist/preview.cjs +1461 -0
- package/package.json +10 -12
- package/dist/215.cjs +0 -849
- package/dist/323.cjs +0 -1100
- package/webpack/webpack-lib/build-dependencies.json +0 -24
package/package.json
CHANGED
|
@@ -15,16 +15,21 @@
|
|
|
15
15
|
"types": "./dist/module.d.ts",
|
|
16
16
|
"import": "./dist/module.cjs",
|
|
17
17
|
"require": "./dist/module.cjs"
|
|
18
|
+
},
|
|
19
|
+
"./preview": {
|
|
20
|
+
"development": "./preview-entry.ts",
|
|
21
|
+
"types": "./dist/preview.d.ts",
|
|
22
|
+
"import": "./dist/preview.cjs",
|
|
23
|
+
"require": "./dist/preview.cjs"
|
|
18
24
|
}
|
|
19
25
|
},
|
|
20
26
|
"main": "./dist/module.cjs",
|
|
21
27
|
"types": "./dist/module.d.ts",
|
|
22
28
|
"files": [
|
|
23
|
-
"dist"
|
|
24
|
-
"webpack/webpack-lib/build-dependencies.json"
|
|
29
|
+
"dist"
|
|
25
30
|
],
|
|
26
31
|
"name": "extension-develop",
|
|
27
|
-
"version": "3.
|
|
32
|
+
"version": "3.13.0",
|
|
28
33
|
"description": "Develop, build, preview, and package Extension.js projects.",
|
|
29
34
|
"author": {
|
|
30
35
|
"name": "Cezar Augusto",
|
|
@@ -40,8 +45,7 @@
|
|
|
40
45
|
"registry": "https://registry.npmjs.org"
|
|
41
46
|
},
|
|
42
47
|
"scripts": {
|
|
43
|
-
"prepublishOnly": "
|
|
44
|
-
"sync-build-deps": "node scripts/sync-build-dependencies.mjs",
|
|
48
|
+
"prepublishOnly": "rslib build && node scripts/write-dist-js-aliases.mjs && node ../../scripts/build-extensions.cjs",
|
|
45
49
|
"compile": "rslib build && node scripts/write-dist-js-aliases.mjs",
|
|
46
50
|
"watch": "rslib build --watch",
|
|
47
51
|
"test": "vitest run"
|
|
@@ -84,14 +88,10 @@
|
|
|
84
88
|
"adm-zip": "^0.5.16",
|
|
85
89
|
"browser-extension-manifest-fields": "^2.2.1",
|
|
86
90
|
"case-sensitive-paths-webpack-plugin": "^2.4.0",
|
|
87
|
-
"chrome-location2": "4.0.0",
|
|
88
|
-
"chromium-location": "2.0.0",
|
|
89
91
|
"content-security-policy-parser": "^0.6.0",
|
|
90
92
|
"cross-spawn": "^7.0.6",
|
|
91
93
|
"dotenv": "^17.2.3",
|
|
92
|
-
"edge-location": "2.2.0",
|
|
93
94
|
"extension-from-store": "^0.1.1",
|
|
94
|
-
"firefox-location2": "3.0.0",
|
|
95
95
|
"go-git-it": "^5.1.5",
|
|
96
96
|
"ignore": "^7.0.5",
|
|
97
97
|
"less": "4.5.1",
|
|
@@ -117,8 +117,7 @@
|
|
|
117
117
|
"vue-loader": "17.4.2",
|
|
118
118
|
"webextension-polyfill": "^0.12.0",
|
|
119
119
|
"webpack-merge": "^6.0.1",
|
|
120
|
-
"webpack-target-webextension": "^2.1.3"
|
|
121
|
-
"ws": "^8.19.0"
|
|
120
|
+
"webpack-target-webextension": "^2.1.3"
|
|
122
121
|
},
|
|
123
122
|
"devDependencies": {
|
|
124
123
|
"@prefresh/webpack": "4.0.6",
|
|
@@ -131,7 +130,6 @@
|
|
|
131
130
|
"@types/node": "^25.2.0",
|
|
132
131
|
"@types/sass-loader": "8.0.10",
|
|
133
132
|
"@types/webextension-polyfill": "0.12.4",
|
|
134
|
-
"@types/ws": "^8.18.1",
|
|
135
133
|
"svelte": "5.53.5",
|
|
136
134
|
"tsup": "^8.5.1",
|
|
137
135
|
"typescript": "6.0.2",
|