This repository was archived by the owner on Mar 1, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "zenstack-v3",
"version": "3.3.3",
"description": "ZenStack",
"packageManager": "pnpm@10.23.0",
"type": "module",
"scripts": {
"build": "turbo run build",
"watch": "turbo run watch build",
"lint": "turbo run lint",
"test": "turbo run test",
"test:all": "pnpm run test:sqlite && pnpm run test:pg && pnpm run test:mysql",
"test:pg": "TEST_DB_PROVIDER=postgresql turbo run test",
"test:mysql": "TEST_DB_PROVIDER=mysql turbo run test",
"test:sqlite": "TEST_DB_PROVIDER=sqlite turbo run test",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"pr": "gh pr create --fill-first --base dev",
"merge-main": "gh pr create --title \"merge dev to main\" --body \"\" --base main --head dev",
"bump-patch": "gh workflow run .github/workflows/bump-version.yml --ref dev -f version_type=patch",
"bump-minor": "gh workflow run .github/workflows/bump-version.yml --ref dev -f version_type=minor",
"publish-all": "pnpm --filter \"./packages/**\" -r publish --access public",
"publish-canary": "pnpm --filter \"./packages/**\" -r publish --access public --tag canary --no-git-checks",
"publish-preview": "pnpm --filter \"./packages/**\" -r publish --force --registry https://preview.registry.zenstack.dev/",
"unpublish-preview": "pnpm --filter \"./packages/**\" -r --shell-mode exec -- npm unpublish -f --registry https://preview.registry.zenstack.dev/ \"\\$PNPM_PACKAGE_NAME\""
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/node": "catalog:",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "~9.29.0",
"glob": "^11.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"prisma": "catalog:",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"turbo": "^2.5.4",
"typescript": "catalog:",
"typescript-eslint": "^8.34.1",
"vitest": "^4.0.14",
"yaml": "^2.8.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"better-sqlite3",
"esbuild",
"vue-demi"
]
}
}