-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 4.72 KB
/
Copy pathpackage.json
File metadata and controls
137 lines (137 loc) · 4.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@iowarp/clio-coder",
"version": "0.5.0",
"description": "An open-source terminal coding agent for scientific software: your models, bounded workers, and inspectable evidence.",
"keywords": [
"ai",
"agentic-ai",
"agentic-coding",
"agentic-science",
"coding",
"repository",
"terminal",
"developer-tools",
"llm",
"local-llm",
"agents",
"model-targets",
"multi-agent",
"coding-agents",
"software-engineering",
"research-software",
"scientific-computing",
"hpc",
"clio",
"iowarp"
],
"type": "module",
"license": "Apache-2.0",
"author": "Anthony Kougkas <a.kougkas@gmail.com> (https://github.com/akougkas)",
"contributors": [
"IOWarp <https://iowarp.ai>",
"Gnosis Research Center <https://grc.iit.edu/>"
],
"homepage": "https://github.com/iowarp/clio-coder#readme",
"bugs": "https://github.com/iowarp/clio-coder/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/iowarp/clio-coder.git"
},
"engines": {
"node": ">=22.19.0"
},
"bin": {
"clio-coder": "dist/cli/index.js"
},
"exports": {
"./package.json": "./package.json",
"./extensions": {
"types": "./src/domains/extensions/public-api.ts"
}
},
"files": [
"dist",
"!dist/**/*.map",
"!dist/metafile*.json",
"assets/clio-coder-logo-128.webp",
"src/**",
"library/**",
".claude-plugin/marketplace.json",
"docs/**/*.md",
"README.md",
"CHANGELOG.md",
"ROADMAP.md",
"CONTRIBUTING.md",
"SECURITY.md",
"CODE_OF_CONDUCT.md",
"NOTICE",
"LICENSE",
"damage-control-rules.yaml",
"examples/extensions/**"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node --import tsx scripts/build.ts && node --import tsx scripts/build-codewiki-asset.ts",
"dev": "node --import tsx scripts/build.ts --watch",
"clean": "rm -rf dist",
"typecheck": "tsc -p tsconfig.tests.json",
"format": "biome format --write .",
"lint": "biome check . && node --import tsx scripts/check-hygiene.ts",
"pi:surface-diff": "node --import tsx scripts/pi-surface-diff.ts",
"pi:surface-snapshot": "node --import tsx scripts/pi-surface-diff.ts --write",
"test:file": "node --import tsx --import ./tests/harness/tmp-root.ts --test",
"pretest": "test -f dist/cli/index.js || pnpm run build",
"test": "node --import tsx --import ./tests/harness/tmp-root.ts --test --test-concurrency=2 tests/contracts/*.test.ts tests/smoke/acp-boundary.test.ts tests/smoke/real-binary-boot.test.ts tests/smoke/process-lifecycle.test.ts",
"test:gui": "pnpm --filter @iowarp/clio-coder-gui test",
"check:gui": "pnpm --filter @iowarp/clio-coder-gui typecheck && pnpm --filter @iowarp/clio-coder-gui lint",
"ci": "pnpm run typecheck && pnpm run lint && pnpm run build && pnpm run test && pnpm run test:maintenance && pnpm run check:gui && pnpm run test:gui",
"ci:release": "node scripts/release-candidate.mjs qualify",
"install:local": "bash scripts/install-local.sh",
"smoke:real-home": "bash scripts/smoke-real-home.sh",
"prepublishOnly": "node scripts/release-candidate.mjs preflight",
"skills:pin": "node --import tsx scripts/pin-skills.ts",
"skills:check": "node --import tsx scripts/pin-skills.ts --check",
"library:pin": "node --import tsx scripts/pin-library.ts",
"library:check": "node --import tsx scripts/pin-library.ts --check",
"test:full": "node --import tsx --import ./tests/harness/tmp-root.ts --test tests/contracts/*.test.ts tests/extended/*.test.ts tests/smoke/*.test.ts tests/extended-smoke/*.test.ts",
"test:package": "node --import tsx --import ./tests/harness/tmp-root.ts --test --test-concurrency=2 tests/smoke/installed-package.test.ts tests/smoke/native-call-timing.test.ts",
"release:preflight": "node scripts/release-candidate.mjs preflight",
"test:gui:full": "pnpm --filter @iowarp/clio-coder-gui test:full",
"evals:check": "node --import tsx scripts/check-evals.ts",
"test:maintenance": "pnpm run test:file -- tests/extended/keyboard-routing.test.ts tests/extended/keyboard-drafts.test.ts tests/extended/eval-tool-surface-model.test.ts"
},
"optionalDependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.186"
},
"dependencies": {
"@earendil-works/pi-agent-core": "0.86.1",
"@earendil-works/pi-ai": "0.86.1",
"@earendil-works/pi-tui": "0.86.1",
"@silvia-odwyer/photon-node": "^0.3.4",
"grok-mermaid": "0.2.2",
"ollama": "0.6.3",
"smol-toml": "1.8.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.1",
"@types/node": "24.12.2",
"@vscode/tree-sitter-wasm": "^0.3.1",
"chalk": "5.6.2",
"diff": "9.0.0",
"esbuild": "0.28.1",
"node-pty": "1.1.0",
"tree-sitter-wasms": "^0.1.13",
"tsup": "8.5.1",
"tsx": "4.22.4",
"typebox": "1.3.0",
"typescript": "6.0.3",
"uuid": "14.0.1",
"yaml": "2.9.0"
},
"packageManager": "pnpm@10.34.5",
"workspaces": [
"apps/*"
]
}