package.json 1007 字节
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
    "@rollup/pluginutils": "^4.1.0",
25
    "debug": "^4.3.1",
fxy060608's avatar
fxy060608 已提交
26
    "estree-walker": "^2.0.1",
fxy060608's avatar
fxy060608 已提交
27
    "fs-extra": "^9.0.1",
28 29 30
    "jsonc-parser": "^3.0.0",
    "magic-string": "^0.25.7",
    "slash": "^3.0.0"
fxy060608's avatar
fxy060608 已提交
31 32
  },
  "peerDependencies": {
fxy060608's avatar
fxy060608 已提交
33
    "@dcloudio/uni-cli-shared": "^3.0.0",
fxy060608's avatar
fxy060608 已提交
34
    "@dcloudio/uni-shared": "^3.0.0",
fxy060608's avatar
fxy060608 已提交
35
    "@vue/shared": "^3.0.7",
fxy060608's avatar
fxy060608 已提交
36
    "vite": "^2.1.1"
37 38 39
  },
  "devDependencies": {
    "@types/sass": "^1.16.0"
fxy060608's avatar
fxy060608 已提交
40 41 42
  },
  "uni-app": {
    "compilerVersion": "3.1.2"
fxy060608's avatar
fxy060608 已提交
43 44
  }
}