-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 933 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 933 Bytes
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
{
"name": "glinui-monorepo",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@10.6.1",
"scripts": {
"dev": "sh -c 'PIDS=$(lsof -ti tcp:3002); [ -n \"$PIDS\" ] && kill $PIDS; sleep 0.5; turbo run dev --parallel'",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test": "turbo run test",
"check": "pnpm build && pnpm typecheck",
"hooks:install": "node tooling/scripts/install-git-hooks.mjs",
"hooks:pre-commit": "node tooling/scripts/pre-commit-check.mjs",
"prepare": "pnpm run hooks:install",
"release": "changeset version",
"pub:beta": "cd packages/cli && pnpm pub:beta",
"pub:release": "cd packages/cli && pnpm pub:release"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/node": "^22.10.5",
"turbo": "^2.5.0",
"typescript": "^5.7.3"
}
}