-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.65 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
{
"name": "sh1pt",
"version": "0.0.0",
"private": true,
"description": "One codebase → every store, registry, CDN, and channel. AI agents tighten the loop.",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/profullstack/sh1pt.git"
}
}