-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "darkwrite",
"scripts": {
"prepare": "husky",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "turbo run format",
"typecheck": "turbo run typecheck",
"dev": "turbo run dev",
"build": "tsx tools/darkwrite-builder.js",
"build:common": "pnpm --filter=@darkwrite/common build",
"build:i18n": "pnpm --filter=@darkwrite/i18n build",
"bundle:desktop": "pnpm --filter=@darkwrite/app-desktop build:pre",
"build:frontend": "pnpm --filter=@darkwrite/frontend build"
},
"packageManager": "pnpm@10.26.2",
"lint-staged": {
"packages/{frontend,app-desktop,common,i18n}/**/*.{ts,tsx,js,jsx,json,css}": [
"biome check --write"
],
"packages/website/**/*.{ts,astro,css}": [
"pnpm --filter=@darkwrite/website exec prettier --write"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "catalog:",
"chalk": "^5.6.2",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"npm-run-all": "^4.1.5",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"dependencies": {
"neverthrow": "^8.2.0"
}
}