-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
54 lines (54 loc) · 1.94 KB
/
package.json
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
{
"private": true,
"type": "module",
"scripts": {
"build": "pnpm build:vocs && pnpm build:create-vocs",
"build:vocs": "rimraf src/_lib src/tsconfig.build.* && tsc -p tsconfig.build.json && bun scripts/postbuild.ts",
"build:create-vocs": "rimraf create-vocs/_lib && tsc -p create-vocs/tsconfig.build.json",
"changeset": "changeset",
"changeset:publish": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only && bun scripts/postversion.ts",
"docs:dev": "node --import tsx/esm ./src/cli/index.ts dev",
"docs:build": "NODE_ENV=production node --import tsx/esm ./src/cli/index.ts build",
"docs:search-index": "NODE_ENV=production node --import tsx/esm ./src/cli/index.ts search-index",
"docs:preview": "node --import tsx/esm ./src/cli/index.ts preview",
"format": "biome format . --write",
"lint": "biome lint . --apply-unsafe",
"playground": "pnpm --filter playgrounds/default dev",
"preconstruct": "bun run scripts/preconstruct.ts",
"prepare": "simple-git-hooks",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^1.3.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/compression": "^1.7.3",
"@types/fs-extra": "^11.0.2",
"@types/node": "^20.8.5",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@types/react-helmet": "^6.1.7",
"@types/serve-static": "^1.15.3",
"@vercel/og": "^0.5.20",
"bun": "^1.0.14",
"bun-types": "^1.0.6",
"globby": "^13.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"tsx": "^4.6.1",
"typescript": "^5.2.2",
"vercel": "^32.5.6",
"viem": "^2.1.1",
"vocs": "workspace:*"
},
"simple-git-hooks": {
"pre-commit": "pnpm format && pnpm lint"
},
"packageManager": "pnpm@9.1.0",
"engines": {
"node": ">=20"
}
}