-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1016 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1016 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
28
29
30
31
32
33
34
35
36
{
"name": "blackdocs",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "vitest",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck --continue",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release": "turbo run build --filter=./packages/* && pnpm changeset publish",
"version": "pnpm changeset version && pnpm install --lockfile-only",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@blackdocs/eslint": "workspace:*",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"turbo": "^2.9.10",
"typescript": "^6.0.3",
"vite": "8.0.13",
"vitest": "^4.1.6"
},
"packageManager": "pnpm@11.3.0",
"engines": {
"node": ">= 24.14.0"
}
}