|
1 | 1 | { |
2 | 2 | "name": "zenstack-v3", |
3 | | - "version": "3.0.0", |
| 3 | + "version": "3.1.0", |
4 | 4 | "description": "ZenStack", |
5 | 5 | "packageManager": "pnpm@10.23.0", |
6 | 6 | "type": "module", |
|
12 | 12 | "test:all": "pnpm run test:sqlite && pnpm run test:pg", |
13 | 13 | "test:pg": "TEST_DB_PROVIDER=postgresql turbo run test", |
14 | 14 | "test:sqlite": "TEST_DB_PROVIDER=sqlite turbo run test", |
| 15 | + "test:coverage": "vitest run --coverage", |
15 | 16 | "format": "prettier --write \"**/*.{ts,tsx,md}\"", |
16 | 17 | "pr": "gh pr create --fill-first --base dev", |
17 | 18 | "merge-main": "gh pr create --title \"merge dev to main\" --body \"\" --base main --head dev", |
18 | | - "bump-version": "gh workflow run .github/workflows/bump-version.yml --ref dev", |
| 19 | + "bump-patch": "gh workflow run .github/workflows/bump-version.yml --ref dev -f version_type=patch", |
| 20 | + "bump-minor": "gh workflow run .github/workflows/bump-version.yml --ref dev -f version_type=minor", |
19 | 21 | "publish-all": "pnpm --filter \"./packages/**\" -r publish --access public", |
20 | 22 | "publish-preview": "pnpm --filter \"./packages/**\" -r publish --force --registry https://preview.registry.zenstack.dev/", |
21 | 23 | "unpublish-preview": "pnpm --filter \"./packages/**\" -r --shell-mode exec -- npm unpublish -f --registry https://preview.registry.zenstack.dev/ \"\\$PNPM_PACKAGE_NAME\"" |
|
26 | 28 | "devDependencies": { |
27 | 29 | "@eslint/js": "^9.29.0", |
28 | 30 | "@types/node": "catalog:", |
| 31 | + "@vitest/coverage-v8": "^4.0.16", |
29 | 32 | "eslint": "~9.29.0", |
30 | 33 | "glob": "^11.1.0", |
| 34 | + "npm-run-all": "^4.1.5", |
31 | 35 | "prettier": "^3.5.3", |
32 | 36 | "prisma": "catalog:", |
33 | 37 | "tsup": "^8.5.0", |
|
40 | 44 | }, |
41 | 45 | "pnpm": { |
42 | 46 | "onlyBuiltDependencies": [ |
43 | | - "better-sqlite3" |
| 47 | + "@parcel/watcher", |
| 48 | + "better-sqlite3", |
| 49 | + "esbuild", |
| 50 | + "vue-demi" |
44 | 51 | ] |
45 | 52 | } |
46 | 53 | } |
0 commit comments