@crxjs/vite-plugin 2.0.0-beta.1 → 2.0.0-beta.2
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/index.cjs +373 -2112
- package/dist/index.mjs +364 -2103
- package/package.json +14 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crxjs/vite-plugin",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.2",
|
|
4
4
|
"description": "Build Chrome Extensions with this Vite plugin.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rollup-plugin",
|
|
@@ -29,7 +29,10 @@
|
|
|
29
29
|
"import": "./dist/index.mjs",
|
|
30
30
|
"types": "./dist/index.d.ts"
|
|
31
31
|
},
|
|
32
|
-
"./*": "./*"
|
|
32
|
+
"./*": "./*",
|
|
33
|
+
"./client": {
|
|
34
|
+
"types": "./client.d.ts"
|
|
35
|
+
}
|
|
33
36
|
},
|
|
34
37
|
"main": "dist/index.cjs",
|
|
35
38
|
"module": "dist/index.mjs",
|
|
@@ -84,46 +87,37 @@
|
|
|
84
87
|
"@rollup/plugin-node-resolve": "13.2.0",
|
|
85
88
|
"@sveltejs/vite-plugin-svelte": "1.0.9",
|
|
86
89
|
"@types/acorn": "4.0.6",
|
|
87
|
-
"@types/chrome": "0.0.
|
|
90
|
+
"@types/chrome": "0.0.198",
|
|
88
91
|
"@types/debug": "4.1.7",
|
|
89
92
|
"@types/fs-extra": "9.0.13",
|
|
90
93
|
"@types/jest-image-snapshot": "^5.1.0",
|
|
91
94
|
"@types/jsesc": "3.0.1",
|
|
92
95
|
"@types/node": "17.0.18",
|
|
93
|
-
"@types/react": "17.0.
|
|
96
|
+
"@types/react": "17.0.50",
|
|
94
97
|
"@types/react-dom": "17.0.17",
|
|
95
98
|
"@typescript-eslint/eslint-plugin": "5.27.1",
|
|
96
99
|
"@typescript-eslint/parser": "5.27.1",
|
|
97
100
|
"@vitejs/plugin-react": "^2.1.0",
|
|
98
|
-
"@vitejs/plugin-vue": "3.1.
|
|
101
|
+
"@vitejs/plugin-vue": "3.1.2",
|
|
99
102
|
"chokidar": "^3.5.3",
|
|
100
|
-
"esbuild": "0.
|
|
101
|
-
"esbuild-runner": "2.2.
|
|
103
|
+
"esbuild": "0.15.12",
|
|
104
|
+
"esbuild-runner": "2.2.2",
|
|
102
105
|
"eslint": "8.17.0",
|
|
103
106
|
"eslint-plugin-react": "^7.29.4",
|
|
104
107
|
"jest-image-snapshot": "^5.2.0",
|
|
105
108
|
"npm-run-all": "^4.1.5",
|
|
106
|
-
"playwright-chromium": "1.
|
|
109
|
+
"playwright-chromium": "1.27.1",
|
|
107
110
|
"react": "17.0.2",
|
|
108
111
|
"react-dom": "17.0.2",
|
|
109
112
|
"rimraf": "3.0.2",
|
|
110
113
|
"rollup-plugin-dts": "^4.2.0",
|
|
111
|
-
"rollup-plugin-esbuild": "4.
|
|
114
|
+
"rollup-plugin-esbuild": "4.10.1",
|
|
112
115
|
"rxjs": "7.5.5",
|
|
113
116
|
"svelte": "^3.48.0",
|
|
114
117
|
"typescript": "^4.6.4",
|
|
115
118
|
"vite": "^3.1.7",
|
|
116
|
-
"vite-plugin-inspect": "0.7.
|
|
119
|
+
"vite-plugin-inspect": "0.7.5",
|
|
117
120
|
"vitest": "^0.23.4",
|
|
118
|
-
"vue": "3.2.
|
|
119
|
-
},
|
|
120
|
-
"peerDependencies": {
|
|
121
|
-
"vite": "^2.9.0 <= ^3.1.7"
|
|
122
|
-
},
|
|
123
|
-
"optionalDependencies": {
|
|
124
|
-
"@vitejs/plugin-react": "*"
|
|
125
|
-
},
|
|
126
|
-
"engines": {
|
|
127
|
-
"node": ">=14"
|
|
121
|
+
"vue": "3.2.41"
|
|
128
122
|
}
|
|
129
123
|
}
|