-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"private": true,
"scripts": {
"build": "turbo run build --filter={./packages/*} --filter=@proofkit/docs",
"ci": "turbo run lint && turbo run typecheck && turbo run test",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"format": "biome format --write .",
"changeset": "changeset",
"version-packages": "changeset version",
"sherif": "pnpm dlx sherif@latest",
"sherif:fix": "pnpm sherif --fix",
"release": "turbo run build --filter={./packages/*} && changeset publish",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"knip": "knip",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@changesets/cli": "^2.29.8",
"@types/node": "^22.19.5",
"husky": "^9.1.7",
"knip": "^5.80.2",
"lint-staged": "^16.2.7",
"turbo": "^2.7.4",
"typescript": "^5.9.3",
"ultracite": "7.0.8",
"vitest": "^4.0.17"
},
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=18"
},
"name": "with-changesets",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"pnpm dlx ultracite fix"
]
},
"pnpm": {
"overrides": {
"shiki": "3.13.0",
"@shikijs/types": "3.13.0",
"glob": "^11.1.0",
"@modelcontextprotocol/sdk": "^1.25.2",
"preact": "^10.26.10",
"qs": "^6.14.1",
"vite": "^6.4.1",
"body-parser": "^2.2.1"
}
}
}