-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@petalnet/workspace",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "vp run -r build",
"check": "vp run --cache -r --concurrency-limit 4 typecheck && vp run lint && vp run fmt:check",
"dev": "vp run -r dev --parallel",
"fmt": "vp fmt",
"fmt:check": "vp fmt --check",
"lint": "pnpm lint:oxlint && pnpm lint:eslint",
"lint:eslint": "eslint -c eslint.config.ts . --max-warnings=0",
"lint:impeccable": "impeccable detect --no-advisory apps packages",
"lint:knip": "knip",
"lint:knip:prod": "knip --strict",
"lint:oxlint": "oxlint --max-warnings=0",
"manypkg": "manypkg check",
"prepare": "effect-tsgo patch",
"test": "vp run -r test",
"ts-references:check": "update-ts-references --check",
"ts-references:update": "update-ts-references",
"typecheck": "tsc -b",
"typesync:check": "typesync --dry=fail"
},
"devDependencies": {
"@effect/tsgo": "catalog:",
"@eslint/js": "catalog:dev",
"@eslint/json": "catalog:dev",
"@eslint/markdown": "catalog:dev",
"@manypkg/cli": "catalog:dev",
"@modelcontextprotocol/client": "catalog:",
"@petalnet/tsconfig": "workspace:*",
"@types/node": "catalog:types",
"@typescript/native": "catalog:dev",
"eslint": "catalog:dev",
"eslint-plugin-oxlint": "catalog:dev",
"eslint-plugin-package-json": "catalog:dev",
"eslint-plugin-svelte": "catalog:dev",
"impeccable": "catalog:dev",
"knip": "catalog:dev",
"oxlint": "catalog:dev",
"typescript": "catalog:dev",
"typescript-eslint": "catalog:dev",
"typesync": "catalog:dev",
"update-ts-references": "catalog:dev",
"vite-plus": "catalog:dev"
},
"packageManager": "pnpm@11.11.0",
"devEngines": {
"runtime": {
"name": "node",
"onFail": "ignore",
"version": "26.5.0"
}
},
"typesync": {
"ignoreProjects": [
"apps/box-agent",
"apps/control-plane",
"apps/courier",
"apps/dispatcher",
"apps/manager",
"apps/point"
]
}
}