-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
package.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": "docflow-monorepo",
"private": true,
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"lint": "yarn workspaces foreach -ptR --from 'packages/*' run lint",
"typecheck": "yarn workspaces foreach -ptR --from 'packages/*' run typecheck",
"build": "yarn workspaces foreach -ptR --from 'packages/*' run build",
"test": "yarn workspaces foreach -ptR --from 'packages/*' run test",
"format": "prettier --write 'packages/**/*' 'docs/**/*.{ts,tsx,js,jsx,json}'",
"format:check": "prettier --check 'packages/**/*' 'docs/**/*.{ts,tsx,js,jsx,json}'",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"packageManager": "[email protected]",
"resolutions": {
"node-gyp@npm:latest": "npm:11.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.9.1",
"@types/eslint": "^9",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.15.1",
"docflow": "workspace:^",
"eslint": "^9.9.1",
"hygen": "^6.2.11",
"knip": "^5.61.3",
"prettier": "^3.8.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.4.0",
"vercel": "^44.5.5",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22.15.1",
"yarn": ">=4"
}
}