package.json 716 字节
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
{
  "name": "@dcloudio/vite-plugin-uni",
  "version": "3.0.0",
  "description": "uni-app vite plugin",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*.js",
    "dist/**/*.d.ts"
  ],
  "buildOptions": {
    "bundler": "tsc"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dcloudio/uni-app.git",
    "directory": "packages/vite-plugin-uni"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "license": "Apache-2.0",
  "dependencies": {
fxy060608's avatar
fxy060608 已提交
24 25 26
    "@rollup/pluginutils": "^4.0.0",
    "estree-walker": "^2.0.1",
    "magic-string": "^0.25.7",
fxy060608's avatar
fxy060608 已提交
27 28 29 30 31 32
    "slash": "^3.0.0"
  },
  "peerDependencies": {
    "vite": "^1.0.0-rc.4"
  }
}