-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 910 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 910 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
{
"name": "@zenko/root",
"private": true,
"description": "Generate TypeScript types and path functions from OpenAPI specs",
"license": "MIT",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint packages/*/src --fix --type-aware --max-warnings=0",
"lint:check": "oxlint packages/*/src --type-aware --max-warnings=0",
"check": "turbo check-types lint format",
"check:ci": "turbo check-types lint:check format:check",
"dev": "turbo watch lint format check-types test",
"zenko": "bun run --cwd packages/zenko",
"nuke": "bun run --bun nuke.ts"
},
"devDependencies": {
"bun-scan": "1.1.2",
"oxfmt": "0.42.0",
"oxlint": "1.57.0",
"oxlint-tsgolint": "0.17.1",
"turbo": "2.8.20"
},
"engines": {
"bun": ">=1.2.22"
},
"packageManager": "bun@1.3.9"
}