vite-plugin-sri4 1.1.0 → 1.2.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/package.json +12 -11
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-plugin-sri4",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "A Vite plugin to generate Subresource Integrity (SRI) hashes for output files.",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "dist/index.cjs",
|
|
7
|
-
"module": "dist/index.js",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
10
|
"import": "./dist/index.js",
|
|
@@ -19,21 +19,22 @@
|
|
|
19
19
|
"dev": "rollup -c -w",
|
|
20
20
|
"test": "vitest run",
|
|
21
21
|
"test:watch": "vitest",
|
|
22
|
-
"test:coverage": "vitest run --coverage"
|
|
22
|
+
"test:coverage": "vitest run --coverage",
|
|
23
|
+
"prepublishOnly": "npm run build"
|
|
23
24
|
},
|
|
24
25
|
"dependencies": {
|
|
25
|
-
"node-fetch": "^3.3.
|
|
26
|
+
"node-fetch": "^3.3.2"
|
|
26
27
|
},
|
|
27
28
|
"peerDependencies": {
|
|
28
29
|
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0"
|
|
29
30
|
},
|
|
30
31
|
"devDependencies": {
|
|
31
|
-
"@rollup/plugin-commonjs": "^25.0.
|
|
32
|
-
"@rollup/plugin-node-resolve": "^15.3
|
|
33
|
-
"@vitest/coverage-v8": "^
|
|
34
|
-
"rollup": "^4.
|
|
35
|
-
"vite": "^
|
|
36
|
-
"vitest": "^
|
|
32
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
33
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
34
|
+
"@vitest/coverage-v8": "^1.2.2",
|
|
35
|
+
"rollup": "^4.9.6",
|
|
36
|
+
"vite": "^5.0.12",
|
|
37
|
+
"vitest": "^1.2.2"
|
|
37
38
|
},
|
|
38
39
|
"keywords": [
|
|
39
40
|
"vite",
|