-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.53 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.53 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
{
"name": "sh1pt",
"version": "0.0.0",
"private": true,
"description": "Ship one codebase to every platform, store, and registry.",
"packageManager": "pnpm@9.12.0",
"scripts": {
"build": "pnpm --filter sh1pt-dot-com build",
"start": "pnpm --filter sh1pt-dot-com start",
"build:all": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint",
"test": "vitest run",
"test:watch": "vitest",
"cli": "pnpm --filter @profullstack/sh1pt exec sh1pt",
"version:patch": "node scripts/version.mjs patch && pnpm install --lockfile-only",
"version:minor": "node scripts/version.mjs minor && pnpm install --lockfile-only",
"version:major": "node scripts/version.mjs major && pnpm install --lockfile-only",
"publish:dry": "pnpm --filter @profullstack/sh1pt-core --filter @profullstack/sh1pt-policy --filter @profullstack/sh1pt publish --dry-run --no-git-checks",
"publish:core": "pnpm --filter @profullstack/sh1pt-core publish --access public --no-git-checks ${NPM_OTP:+--otp=$NPM_OTP}",
"publish:policy": "pnpm --filter @profullstack/sh1pt-policy publish --access public --no-git-checks ${NPM_OTP:+--otp=$NPM_OTP}",
"publish:cli": "pnpm --filter @profullstack/sh1pt publish --access public --no-git-checks ${NPM_OTP:+--otp=$NPM_OTP}",
"publish:all": "pnpm publish:core && pnpm publish:policy && pnpm publish:cli"
},
"devDependencies": {
"typescript": "^5.6.3",
"tsx": "^4.19.1",
"vitest": "^2.1.4",
"@types/node": "^22.0.0"
}
}