-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
163 lines (163 loc) · 7.28 KB
/
Copy pathpackage.json
File metadata and controls
163 lines (163 loc) · 7.28 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "salmon-loop",
"version": "0.5.0",
"description": "A chat-first coding agent CLI for safe, reviewable repository changes",
"type": "module",
"bin": {
"s8p": "dist/cli/index.js",
"salmon-loop": "dist/cli/index.js"
},
"files": [
"dist/cli/**/*.js",
"dist/core/**/*.js",
"dist/integrations/**/*.js",
"dist/interfaces/**/*.js",
"dist/languages/**/*.js",
"dist/locales/**/*.js",
"dist/utils/**/*.js",
"dist/core/prompts/templates/**/*.hbs",
"scripts/fix-es-abstract-compat.js",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"preferGlobal": true,
"scripts": {
"check-deps": "bun scripts/check-deps.js",
"build": "bun scripts/clean-dist.js && bun ./node_modules/typescript/bin/tsc -p tsconfig.build.json && bun scripts/copy-assets.js",
"dev": "bun src/cli/index.ts",
"test": "bun run test:unit",
"t": "bun run test:unit",
"test:unit": "bun scripts/run-bun-file-tests.ts tests/unit",
"test:integration": "bun scripts/run-bun-file-tests.ts tests/integration",
"test:integration:network": "RUN_A2A_NETWORK_INTEGRATION=1 bun test --timeout 90000 --preload ./tests/setup-bun.ts tests/integration/a2a-sdk-server.test.ts",
"test:e2e": "bun scripts/run-bun-file-tests.ts tests/e2e",
"test:full": "bun run test:unit && bun run test:integration",
"test:all": "bun run test:full && bun run test:perf",
"test:runtime-boundary": "bun test --preload ./tests/setup-bun.ts tests/unit/scripts/target-runtime-boundary.test.ts tests/unit/scripts/bun-purity.test.ts",
"test:worktree-smoke": "bun scripts/worktree-smoke.js",
"test:headless-smoke": "bun scripts/headless-smoke.ts",
"smoke:swebench": "bun scripts/swebench-smoke.ts",
"test:contract-smoke": "bun test --timeout 15000 --preload ./tests/setup-bun.ts tests/unit/architecture/request-assembly-invariant.test.ts tests/unit/architecture/replacement-preview-boundary-invariant.test.ts tests/unit/architecture/sub-agent-prefix-consistency-invariant.test.ts tests/unit/architecture/tool-naming-contract.test.ts tests/unit/architecture/verify-contract-smoke-gate.test.ts tests/unit/tools/session-streaming.test.ts tests/unit/core/grizzco/steps/plan-patch-toolcalling.test.ts tests/unit/core/session/replacement-state.test.ts",
"setup:hooks": "git config core.hooksPath .githooks",
"postinstall": "node scripts/fix-es-abstract-compat.js",
"check:bun-purity": "bun scripts/check-bun-purity.ts",
"check:bun-purity:staged": "bun scripts/check-bun-purity.ts --staged",
"check:target-runtime-boundary": "bun scripts/check-target-runtime-hardcoding.ts",
"check:target-runtime-boundary:staged": "bun scripts/check-target-runtime-hardcoding.ts --staged",
"check:unit-boundary": "bun scripts/check-unit-test-boundary.ts",
"check:unit-boundary:staged": "bun scripts/check-unit-test-boundary.ts --staged",
"check:fs-git-boundary": "bun scripts/check-fs-git-boundary.ts",
"check:fs-git-boundary:staged": "bun scripts/check-fs-git-boundary.ts --staged",
"memory:cleanup": "bun scripts/cleanup-sessions.ts",
"memory:cleanup:execute": "bun scripts/cleanup-sessions.ts --execute",
"memory:analyze": "bun scripts/cleanup-sessions.ts --analyze",
"check:bun-native-boundary": "bun scripts/check-bun-native-boundary.ts",
"check:bun-native-boundary:staged": "bun scripts/check-bun-native-boundary.ts --staged",
"check:test-runner-migration": "bun scripts/check-test-runner-migration.ts",
"lint": "bun ./node_modules/eslint/bin/eslint.js .",
"typecheck": "bun ./node_modules/typescript/bin/tsc --noEmit",
"verify": "bun run check:bun-purity && bun run check:target-runtime-boundary && bun run check:unit-boundary && bun run check:fs-git-boundary && bun run check:bun-native-boundary && bun run check:test-runner-migration && bun run format:check && bun run lint && bun run typecheck && bun run test:contract-smoke && bun run test:full",
"test:watch": "bun test --watch --preload ./tests/setup-bun.ts tests",
"test:watch:unit": "bun test --watch --preload ./tests/setup-bun.ts tests/unit",
"test:watch:integration": "bun test --watch --preload ./tests/setup-bun.ts tests/integration",
"test:perf": "bun scripts/run-bun-file-tests.ts tests/perf",
"test:perf:network": "RUN_A2A_PERF_BENCHMARKS=1 bun test tests/perf/a2a-performance-benchmark.test.ts",
"test:perf:all": "RUN_A2A_PERF_BENCHMARKS=1 bun scripts/run-bun-file-tests.ts tests/perf",
"test:watch:perf": "bun test --watch --preload ./tests/setup-bun.ts tests/perf",
"test:coverage": "bun test --coverage --preload ./tests/setup-bun.ts tests",
"test:report": "bun test --reporter=junit --reporter-outfile=test-report.xml --preload ./tests/setup-bun.ts tests",
"test:ci": "bun run verify",
"pack:dry": "npm pack --dry-run",
"format": "oxfmt --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "oxfmt --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"release": "bun scripts/release.ts cut",
"release:cut": "bun scripts/release.ts cut",
"release:publish": "bun scripts/release.ts publish"
},
"keywords": [
"code",
"automation",
"patch",
"llm"
],
"author": "",
"homepage": "https://www.s8p.io",
"repository": {
"type": "git",
"url": "https://github.com/salmonloop/salmon-loop.git"
},
"bugs": {
"url": "https://github.com/salmonloop/salmon-loop/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.3.9"
},
"packageManager": "bun@1.3.10",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@testing-library/react": "^16.3.2",
"@types/express": "^4.17.21",
"@types/marked": "^6.0.0",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^20.0.0",
"@types/progress": "^2.0.7",
"@types/react": "^19.2.10",
"@types/sinon": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"bun-types": "^1.3.9",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"fast-check": "^4.6.0",
"jsdom": "^27.4.0",
"oxfmt": "^0.42.0",
"react-devtools-core": "^7.0.1",
"simple-git": "^3.30.0",
"sinon": "^21.0.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.53.0",
"yoga-layout": "^3.2.1"
},
"dependencies": {
"@a2a-js/sdk": "0.3.10",
"@agentclientprotocol/sdk": "0.22.1",
"@ai-sdk/openai": "^3.0.23",
"@ai-sdk/openai-compatible": "^2.0.24",
"@inquirer/prompts": "^8.2.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"ai": "^6.0.62",
"ajv": "^8.18.0",
"chalk": "^5.4.1",
"commander": "^11.1.0",
"dotenv": "^17.2.3",
"execa": "^9.6.1",
"express": "^5.2.1",
"fast-xml-parser": "5.4.1",
"fastify": "^4.27.0",
"handlebars": "^4.7.8",
"ink": "^6.6.0",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"marked": "^16.4.2",
"marked-terminal": "^7.3.0",
"openai": "^6.16.0",
"progress": "^2.0.3",
"react": "^19.2.4",
"tiktoken": "^1.0.22",
"tree-sitter-javascript": "^0.25.0",
"tree-sitter-python": "^0.25.0",
"web-tree-sitter": "0.26.3",
"yaml": "^2.8.2",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.1"
}
}