forked from mhingston/keystone-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.96 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "keystone-cli",
"version": "2.1.11",
"description": "A local-first, declarative, agentic workflow orchestrator built on Bun",
"type": "module",
"bin": {
"keystone": "./src/cli.ts"
},
"scripts": {
"dev": "bun run src/cli.ts",
"test": "bun test --timeout 60000",
"test:adapter": "SKIP_LLM_MOCK=1 bun test ./src/runner/llm-adapter.integration.test.ts --timeout 60000",
"test:unit": "bun test --timeout 60000 --filter '!llm-adapter.integration.test.ts'",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"schema:generate": "bun run src/scripts/generate-schemas.ts"
},
"keywords": ["workflow", "orchestrator", "agentic", "automation", "bun"],
"author": "Mark Hingston",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mhingston/keystone-cli.git"
},
"homepage": "https://github.com/mhingston/keystone-cli#readme",
"files": ["src", "README.md", "LICENSE", "logo.png"],
"dependencies": {
"@ast-grep/cli": "^0.40.3",
"@ast-grep/napi": "^0.40.3",
"@jsep-plugin/arrow": "^1.0.6",
"@jsep-plugin/object": "^1.2.2",
"@types/react": "^19.0.0",
"@xenova/transformers": "^2.17.2",
"ai": "^6.0.3",
"ajv": "^8.12.0",
"commander": "^12.1.0",
"dagre": "^0.8.5",
"glob": "^10.4.5",
"ink": "^6.5.1",
"ink-select-input": "3.1.2",
"ink-spinner": "^5.0.0",
"js-yaml": "^4.1.0",
"jsep": "^1.4.0",
"minimatch": "^10.1.1",
"react": "^19.0.0",
"sqlite-vec": "0.1.6",
"yaml": "^2.8.2",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.1"
},
"optionalDependencies": {
"re2": "^1.21.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.3.5",
"@types/dagre": "^0.7.53",
"@types/js-yaml": "^4.0.9",
"@types/minimatch": "^6.0.0",
"@types/node": "^25.0.3",
"react-devtools-core": "^7.0.1"
},
"engines": {
"bun": ">=1.0.0"
}
}