-
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) · 1.02 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.02 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
{
"name": "notion-agent-cli",
"version": "0.5.0",
"type": "module",
"main": "scripts/actions.mjs",
"scripts": {
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
"setup": "node scripts/setup.mjs",
"setup:status": "node scripts/setup.mjs --status",
"test": "node --test tests/**/*.test.mjs tests/**/*.prop.mjs",
"test:unit": "node --test tests/unit/*.test.mjs",
"test:prop": "node --test tests/property/*.prop.mjs",
"lint": "biome check",
"lint:fix": "biome check --fix",
"format": "biome format --write",
"bench": "uv run --project benchmark benchmark/run.py all",
"generate-docs": "node scripts/notion/docs/generate-skill-docs.mjs",
"check-docs": "node scripts/notion/docs/generate-skill-docs.mjs --check",
"bump": "node scripts/bump.mjs"
},
"dependencies": {
"@notionhq/client": "^5.14.0"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@biomejs/biome": "^2.4.8",
"fast-check": "^3.0.0"
},
"engines": {
"node": ">=20"
}
}