-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.15 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.15 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
{
"name": "heddle",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run src/cli/index.ts",
"build": "bun run scripts/build.ts cli",
"build:headless": "bun run scripts/build.ts headless",
"build:all": "bun run scripts/build.ts all",
"build:linux-x64": "bun run scripts/build.ts cli --target=bun-linux-x64",
"build:linux-arm64": "bun run scripts/build.ts cli --target=bun-linux-arm64",
"typecheck": "bun run tsc --noEmit",
"lint": "bunx biome check --write src/ test/",
"test": "bun test",
"test:integration": "HEDDLE_INTEGRATION_TESTS=1 bun test",
"test:integration-only": "HEDDLE_INTEGRATION_TESTS=1 HEDDLE_SLOW_TESTS=1 bun test test/provider/openrouter.integration.test.ts test/integration/",
"test:all": "HEDDLE_INTEGRATION_TESTS=1 HEDDLE_SLOW_TESTS=1 bun test",
"headless": "bun run src/headless/index.ts",
"export-schemas": "bun run scripts/export-schemas.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@sinclair/typebox": "^0.34.48",
"gray-matter": "4.0.3",
"smol-toml": "^1.6.0"
}
}