Fix public access mode, introduce loading spinners, package fixes
This commit is contained in:
+64
-47
@@ -1,70 +1,87 @@
|
||||
{
|
||||
"name": "@vitejs/plugin-react",
|
||||
"version": "4.7.0",
|
||||
"license": "MIT",
|
||||
"author": "Evan You",
|
||||
"version": "6.0.4",
|
||||
"description": "The default Vite plugin for React projects",
|
||||
"keywords": [
|
||||
"vite",
|
||||
"vite-plugin",
|
||||
"fast refresh",
|
||||
"react",
|
||||
"babel",
|
||||
"react-refresh",
|
||||
"fast refresh"
|
||||
"vite",
|
||||
"vite-plugin"
|
||||
],
|
||||
"homepage": "https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react#readme",
|
||||
"bugs": {
|
||||
"url": "https://github.com/vitejs/vite-plugin-react/issues"
|
||||
},
|
||||
"license": "MIT",
|
||||
"author": "Evan You",
|
||||
"contributors": [
|
||||
"Alec Larson",
|
||||
"Arnaud Barré"
|
||||
],
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"type": "module",
|
||||
"main": "./dist/index.cjs",
|
||||
"module": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist/index.js",
|
||||
"require": "./dist/index.cjs"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "tsdown --watch",
|
||||
"build": "tsdown",
|
||||
"prepublishOnly": "npm run build",
|
||||
"test-unit": "vitest run"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^14.18.0 || >=16.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/vitejs/vite-plugin-react.git",
|
||||
"directory": "packages/plugin-react"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/vitejs/vite-plugin-react/issues"
|
||||
"files": [
|
||||
"dist",
|
||||
"types"
|
||||
],
|
||||
"type": "module",
|
||||
"imports": {
|
||||
"#optionalTypes": "./types/optionalTypes.d.ts"
|
||||
},
|
||||
"exports": {
|
||||
".": "./dist/index.js",
|
||||
"./preamble": "./types/preamble.d.ts"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "tsdown --watch ./src --watch ../common",
|
||||
"build": "tsdown",
|
||||
"prepublishOnly": "npm run build",
|
||||
"test-unit": "vitest run"
|
||||
},
|
||||
"homepage": "https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react#readme",
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.28.0",
|
||||
"@babel/plugin-transform-react-jsx-self": "^7.27.1",
|
||||
"@babel/plugin-transform-react-jsx-source": "^7.27.1",
|
||||
"@rolldown/pluginutils": "1.0.0-beta.27",
|
||||
"@types/babel__core": "^7.20.5",
|
||||
"react-refresh": "^0.17.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
|
||||
"@rolldown/pluginutils": "^1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "8.0.1",
|
||||
"@rolldown/plugin-babel": "^0.2.3",
|
||||
"@vitejs/react-common": "workspace:*",
|
||||
"babel-plugin-react-compiler": "19.1.0-rc.2",
|
||||
"react": "^19.1.0",
|
||||
"react-dom": "^19.1.0",
|
||||
"rolldown": "1.0.0-beta.27",
|
||||
"tsdown": "^0.12.9",
|
||||
"vitest": "^3.2.4"
|
||||
"babel-plugin-react-compiler": "^1.0.0",
|
||||
"react": "^19.2.8",
|
||||
"react-dom": "^19.2.8",
|
||||
"rolldown": "^1.1.5",
|
||||
"tsdown": "^0.22.7",
|
||||
"vite": "^8.1.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
|
||||
"babel-plugin-react-compiler": "^1.0.0",
|
||||
"vite": "^8.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@rolldown/plugin-babel": {
|
||||
"optional": true
|
||||
},
|
||||
"babel-plugin-react-compiler": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"engines": {
|
||||
"node": "^20.19.0 || >=22.12.0"
|
||||
},
|
||||
"compatiblePackages": {
|
||||
"schemaVersion": 1,
|
||||
"rolldown": {
|
||||
"type": "compatible",
|
||||
"versions": "^1.0.0",
|
||||
"note": "You can use Rolldown's built-in feature directly."
|
||||
},
|
||||
"rollup": {
|
||||
"type": "incompatible",
|
||||
"reason": "Uses Rolldown-specific APIs or Vite-specific APIs"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user