-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 935 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 935 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
{
"name": "@unic/agents-plugins-workspace",
"private": true,
"license": "LGPL-3.0-or-later",
"type": "module",
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"scripts": {
"format": "biome format --write . && prettier --write \"**/*.md\"",
"check": "biome check . && prettier --check \"**/*.md\"",
"ci:check": "biome ci . && prettier --check \"**/*.md\"",
"test": "pnpm -r --if-present test",
"typecheck": "pnpm -r --if-present typecheck",
"ralph": "ralph run -c ralph.yml -H builtin:code-assist"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@types/node": "catalog:",
"@unic/biome-config": "workspace:*",
"@unic/release-tools": "workspace:*",
"@unic/tsconfig": "workspace:*",
"prettier": "catalog:",
"typescript": "catalog:"
},
"optionalDependencies": {
"@ralph-orchestrator/ralph-cli": "catalog:"
}
}