@crxjs/vite-plugin 2.0.0-beta.1 → 2.0.0-beta.3

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.
Files changed (4) hide show
  1. package/README.md +1 -1
  2. package/dist/index.cjs +373 -2112
  3. package/dist/index.mjs +364 -2103
  4. package/package.json +16 -22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crxjs/vite-plugin",
3
- "version": "2.0.0-beta.1",
3
+ "version": "2.0.0-beta.3",
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",
@@ -73,7 +76,8 @@
73
76
  "magic-string": "^0.26.0",
74
77
  "picocolors": "^1.0.0",
75
78
  "react-refresh": "^0.13.0",
76
- "rollup": "2.78.1"
79
+ "rollup": "2.78.1",
80
+ "rxjs": "7.5.7"
77
81
  },
78
82
  "devDependencies": {
79
83
  "@extend-chrome/messages": "1.2.2",
@@ -84,46 +88,36 @@
84
88
  "@rollup/plugin-node-resolve": "13.2.0",
85
89
  "@sveltejs/vite-plugin-svelte": "1.0.9",
86
90
  "@types/acorn": "4.0.6",
87
- "@types/chrome": "0.0.190",
91
+ "@types/chrome": "0.0.198",
88
92
  "@types/debug": "4.1.7",
89
93
  "@types/fs-extra": "9.0.13",
90
94
  "@types/jest-image-snapshot": "^5.1.0",
91
95
  "@types/jsesc": "3.0.1",
92
96
  "@types/node": "17.0.18",
93
- "@types/react": "17.0.44",
97
+ "@types/react": "17.0.50",
94
98
  "@types/react-dom": "17.0.17",
95
99
  "@typescript-eslint/eslint-plugin": "5.27.1",
96
100
  "@typescript-eslint/parser": "5.27.1",
97
101
  "@vitejs/plugin-react": "^2.1.0",
98
- "@vitejs/plugin-vue": "3.1.0",
102
+ "@vitejs/plugin-vue": "3.1.2",
99
103
  "chokidar": "^3.5.3",
100
- "esbuild": "0.14.43",
101
- "esbuild-runner": "2.2.1",
104
+ "esbuild": "0.15.12",
105
+ "esbuild-runner": "2.2.2",
102
106
  "eslint": "8.17.0",
103
107
  "eslint-plugin-react": "^7.29.4",
104
108
  "jest-image-snapshot": "^5.2.0",
105
109
  "npm-run-all": "^4.1.5",
106
- "playwright-chromium": "1.21.1",
110
+ "playwright-chromium": "1.27.1",
107
111
  "react": "17.0.2",
108
112
  "react-dom": "17.0.2",
109
113
  "rimraf": "3.0.2",
110
114
  "rollup-plugin-dts": "^4.2.0",
111
- "rollup-plugin-esbuild": "4.9.1",
112
- "rxjs": "7.5.5",
115
+ "rollup-plugin-esbuild": "4.10.1",
113
116
  "svelte": "^3.48.0",
114
117
  "typescript": "^4.6.4",
115
118
  "vite": "^3.1.7",
116
- "vite-plugin-inspect": "0.7.2",
119
+ "vite-plugin-inspect": "0.7.5",
117
120
  "vitest": "^0.23.4",
118
- "vue": "3.2.36"
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
  }