-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.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
{
"name": "shhh",
"private": true,
"version": "1.2.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thoda-dev/shhh.git"
},
"bugs": {
"url": "https://github.com/thoda-dev/shhh/issues"
},
"homepage": "https://github.com/thoda-dev/shhh#readme",
"packageManager": "pnpm@11.25.0",
"engines": {
"node": ">=24"
},
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"dev": "pnpm --filter app dev",
"dev:docs": "pnpm --filter docs dev",
"build": "pnpm --filter app build",
"build:docs": "pnpm --filter docs build",
"typecheck": "pnpm --filter app typecheck",
"test": "pnpm --filter app test",
"test:integration": "pnpm --filter app test:integration",
"lint": "pnpm --filter app lint",
"lint:fix": "pnpm --filter app lint:fix",
"release": "node scripts/release.mjs",
"release:docs": "node scripts/release-docs.mjs",
"update:all": "pnpm -r --include-workspace-root update",
"db:generate": "pnpm --filter app db:generate",
"db:migrate": "pnpm --filter app db:migrate",
"db:studio": "pnpm --filter app db:studio"
},
"dependencies": {
"consola": "^3.4.2"
},
"devDependencies": {
"@nuxt/cli": "alpha",
"changelogen": "^0.6.2"
}
}