package.json 2.3 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2 3 4 5 6 7 8
{
  "private": true,
  "version": "3.0.0",
  "workspaces": [
    "packages/*"
  ],
  "scripts": {
    "build": "node scripts/build.js",
fxy060608's avatar
fxy060608 已提交
9
    "size": "npm run build size-check",
10
    "lint": "eslint packages/*/src/**/*.ts",
fxy060608's avatar
fxy060608 已提交
11 12 13
    "format": "prettier --write --parser typescript \"packages/**/*.ts?(x)\"",
    "ls-lint": "ls-lint",
    "test": "jest",
fxy060608's avatar
fxy060608 已提交
14
    "preinstall": "node ./scripts/checkYarn.js",
fxy060608's avatar
fxy060608 已提交
15
    "e2e:ssr:open": "cd packages/playground/ssr && npx cypress open",
fxy060608's avatar
fxy060608 已提交
16
    "e2e:ssr:dev": "cd packages/playground/ssr && npm run dev:ssr"
fxy060608's avatar
fxy060608 已提交
17 18 19 20 21 22
  },
  "types": "test-dts/index.d.ts",
  "tsd": {
    "directory": "test-dts"
  },
  "gitHooks": {
fxy060608's avatar
fxy060608 已提交
23
    "pre-commit": "lint-staged",
fxy060608's avatar
fxy060608 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
    "commit-msg": "node scripts/verifyCommit.js"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write"
    ],
    "*.ts?(x)": [
      "eslint",
      "prettier --parser=typescript --write"
    ]
  },
  "engines": {
    "node": ">=10.0.0"
  },
  "devDependencies": {
Q
qiang 已提交
39
    "@dcloudio/types": "^2.2.1",
40
    "@microsoft/api-extractor": "^7.13.2",
fxy060608's avatar
fxy060608 已提交
41
    "@rollup/plugin-alias": "^3.1.1",
42 43 44 45
    "@rollup/plugin-commonjs": "^17.0.0",
    "@rollup/plugin-json": "^4.1.0",
    "@rollup/plugin-node-resolve": "^11.0.1",
    "@rollup/plugin-replace": "^2.3.4",
fxy060608's avatar
fxy060608 已提交
46
    "@rollup/plugin-strip": "^2.0.0",
fxy060608's avatar
fxy060608 已提交
47
    "@types/css-font-loading-module": "^0.0.4",
fxy060608's avatar
fxy060608 已提交
48
    "@types/debug": "^4.1.5",
49
    "@types/es-module-lexer": "^0.3.0",
50 51 52
    "@types/fs-extra": "^9.0.6",
    "@types/jest": "^26.0.19",
    "@types/node": "^14.14.20",
53
    "@types/pako": "^1.0.1",
54
    "@types/puppeteer": "^5.4.2",
Q
qiang 已提交
55
    "@types/quill": "^1.3.7",
56
    "@typescript-eslint/parser": "^4.12.0",
57
    "@vitejs/plugin-vue": "^1.2.2",
fxy060608's avatar
fxy060608 已提交
58
    "@vitejs/plugin-vue-jsx": "^1.1.4",
59
    "eslint": "^7.17.0",
fxy060608's avatar
fxy060608 已提交
60
    "fs-extra": "^9.0.1",
61 62 63 64
    "jest": "^26.6.3",
    "lint-staged": "^10.5.3",
    "mini-types": "^0.1.4",
    "miniprogram-api-typings": "^3.2.0",
fxy060608's avatar
fxy060608 已提交
65
    "module-alias": "^2.2.2",
66 67
    "prettier": "^2.2.1",
    "rollup": "^2.35.1",
fxy060608's avatar
fxy060608 已提交
68
    "rollup-plugin-jscc": "^2.0.0",
fxy060608's avatar
fxy060608 已提交
69 70
    "rollup-plugin-node-builtins": "^2.1.2",
    "rollup-plugin-node-globals": "^1.4.0",
71 72 73 74 75
    "rollup-plugin-terser": "^7.0.2",
    "rollup-plugin-typescript2": "^0.29.0",
    "rollup-plugin-vue": "^6.0.0",
    "semver": "^7.3.4",
    "ts-jest": "^26.4.4",
76
    "typescript": "~4.1.3",
77
    "vite": "^2.2.4",
fxy060608's avatar
fxy060608 已提交
78
    "vue": "3.0.11",
fxy060608's avatar
fxy060608 已提交
79 80 81
    "yorkie": "^2.0.0"
  }
}