-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1010 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
{
"name": "@rebelliard/agents",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.32.0",
"engines": {
"node": ">=24.13"
},
"scripts": {
"hook:install": "lefthook install",
"hook:precommit": "lefthook run pre-commit",
"hook:prepush": "lefthook run pre-push",
"check": "pnpm format:check && pnpm tc && pnpm test",
"format": "biome check --write . && prettier --config .git-hooks/prettierrc.markdown.json --write \"**/*.{md,mdx}\"",
"format:check": "biome ci . && prettier --config .git-hooks/prettierrc.markdown.json --check \"**/*.{md,mdx}\"",
"tc": "tsc -p tsconfig.json --noEmit",
"test": "pnpm test:py && pnpm test:js",
"test:js": "vitest run --passWithNoTests",
"test:py": "python3 -B -m unittest discover -s tests"
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"@types/node": "^26.1.0",
"lefthook": "^2.1.9",
"prettier": "^3.9.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}