-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.74 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.74 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
{
"name": "@iowarp/clio-coder",
"version": "0.1.9",
"description": "Coding agent for HPC and scientific-software developers, part of IOWarp's CLIO ecosystem of agentic science.",
"keywords": [
"ai",
"agentic-ai",
"agentic-coding",
"agentic-science",
"coding",
"repository",
"terminal",
"developer-tools",
"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://iowarp.ai",
"bugs": "https://github.com/iowarp/clio-coder/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/iowarp/clio-coder.git"
},
"engines": {
"node": ">=22.0.0"
},
"bin": {
"clio": "dist/cli/index.js"
},
"files": [
"dist",
"src/domains/agents/builtins/**",
"src/domains/providers/models/**",
"src/domains/prompts/fragments/**",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"CODE_OF_CONDUCT.md",
"NOTICE",
"LICENSE",
"CLIO.md",
"damage-control-rules.yaml"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc -p tsconfig.tests.json",
"format": "biome format --write .",
"lint": "biome check .",
"check:boundaries": "node --import tsx --test 'tests/boundaries/**/*.test.ts'",
"test": "node --import tsx --test 'tests/unit/**/*.test.ts' 'tests/integration/**/*.test.ts' 'tests/boundaries/**/*.test.ts'",
"test:e2e": "npm run build && node --import tsx --test 'tests/e2e/**/*.test.ts'",
"ci": "npm run typecheck && npm run lint && npm run test && npm run build && node --import tsx --test 'tests/e2e/**/*.test.ts'",
"hooks:install": "bash scripts/install-hooks.sh",
"prepublishOnly": "npm run typecheck && npm run lint && npm run build && node scripts/check-dist.mjs"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.2.120",
"@earendil-works/pi-agent-core": "0.74.0",
"@earendil-works/pi-ai": "0.74.0",
"@earendil-works/pi-tui": "0.74.0",
"@lmstudio/sdk": "1.5.0",
"@silvia-odwyer/photon-node": "^0.3.4",
"chalk": "5.6.2",
"diff": "9.0.0",
"esbuild": "0.28.0",
"ollama": "0.6.3",
"typebox": "1.1.33",
"typescript": "6.0.3",
"undici": "8.1.0",
"uuid": "14.0.0",
"yaml": "2.8.3"
},
"overrides": {
"@anthropic-ai/sdk": "0.94.0",
"ip-address": "10.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@types/node": "24.12.2",
"node-pty": "1.1.0",
"tsup": "8.5.1",
"tsx": "4.21.0"
}
}