-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 2.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 2.19 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
{
"name": "kibi",
"version": "0.2.0",
"private": false,
"license": "AGPL-3.0-or-later",
"author": "Piotr Franczyk",
"workspaces": ["packages/*"],
"scripts": {
"test": "bun test --timeout 120000 packages && bun run test:e2e:local",
"test:unit": "bun test packages/",
"test:coverage:unit": "rm -rf coverage/unit && mkdir -p coverage/unit && bun test --coverage --coverage-reporter text --coverage-reporter lcov --coverage-dir coverage/unit --timeout 120000 packages/",
"test:e2e": "./scripts/docker/test.sh e2e",
"test:e2e:local": "bun run build:cli && bun run build:mcp && rm -rf /tmp/kibi-e2e-packed-compiled && tsc -p documentation/tests/e2e/packed/tsconfig.e2e.json --outDir /tmp/kibi-e2e-packed-compiled --noEmitOnError false || true; NODE_OPTIONS='--enable-source-maps' node --test --test-concurrency=1 /tmp/kibi-e2e-packed-compiled/*.test.js",
"test:docker": "./scripts/docker/test.sh",
"docker:build": "docker compose -f docker/compose.test.yml build",
"docker:clean": "docker compose -f docker/compose.test.yml down -v --remove-orphans",
"pack:all": "npm pack --workspace packages/core && npm pack --workspace packages/cli && npm pack --workspace packages/mcp && npm pack --workspace packages/opencode",
"check": "biome check .",
"format": "biome format --write .",
"pack:drive": "./scripts/pack-to-drive.sh",
"build:cli": "bun --filter ./packages/cli build",
"build:mcp": "bun --filter ./packages/mcp build",
"build:opencode": "bun --filter ./packages/opencode build",
"dev:opencode": "bun --filter ./packages/opencode dev",
"build": "bun run build:cli && bun run build:mcp && bun run build:opencode",
"publish:selective": "./scripts/publish-selective.sh",
"release:npm": "bun run build && ./scripts/publish-selective.sh",
"release:bun": "bun run build && ./scripts/publish-selective.sh",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@changesets/cli": "^2.27.12",
"@types/node": "^25.2.3",
"ajv-formats": "2.1.1",
"bun-types": "^1.2.0",
"mitata": "^1.0.34",
"typescript": "^5.7.0"
}
}