shipr-agent 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +35 -0
- package/dist/index.js +102163 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shipr-agent",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Fully autonomous terminal-based coding agent",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"shipr": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "bun src/index.ts",
|
|
17
|
+
"build": "bun build src/index.ts --outdir dist --target node --format esm && node -e \"const fs=require('fs');const f='dist/index.js';let c=fs.readFileSync(f,'utf8');c=c.replace('#!/usr/bin/env bun','#!/usr/bin/env node');fs.writeFileSync(f,c)\"",
|
|
18
|
+
"build:bin": "bun build src/index.ts --compile --outfile shipr",
|
|
19
|
+
"typecheck": "bunx tsc --noEmit",
|
|
20
|
+
"lint": "bunx biome check src/",
|
|
21
|
+
"lint:fix": "bunx biome check src/ --write",
|
|
22
|
+
"test": "bun test",
|
|
23
|
+
"check": "bun run typecheck && bun run lint && bun test",
|
|
24
|
+
"prepublishOnly": "bun run typecheck && bun run build"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"ai",
|
|
28
|
+
"coding-agent",
|
|
29
|
+
"cli",
|
|
30
|
+
"autonomous",
|
|
31
|
+
"llm",
|
|
32
|
+
"copilot",
|
|
33
|
+
"openai",
|
|
34
|
+
"anthropic",
|
|
35
|
+
"terminal"
|
|
36
|
+
],
|
|
37
|
+
"author": "praveenmalik",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=18",
|
|
41
|
+
"bun": ">=1.0"
|
|
42
|
+
},
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/praveenmalik/shipr"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/praveenmalik/shipr#readme",
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@aws-sdk/client-bedrock-runtime": "^3.1016.0",
|
|
50
|
+
"chalk": "^5.6.2",
|
|
51
|
+
"commander": "^14.0.3",
|
|
52
|
+
"ink": "^6.8.0",
|
|
53
|
+
"js-yaml": "^4.1.1",
|
|
54
|
+
"ora": "^9.3.0",
|
|
55
|
+
"react": "^19.2.4",
|
|
56
|
+
"simple-git": "^3.33.0",
|
|
57
|
+
"zod": "^4.3.6"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@biomejs/biome": "^2.4.8",
|
|
61
|
+
"@types/js-yaml": "^4.0.9",
|
|
62
|
+
"@types/react": "^19.2.14",
|
|
63
|
+
"bun-types": "^1.3.11",
|
|
64
|
+
"react-devtools-core": "^7.0.1",
|
|
65
|
+
"typescript": "^6.0.2"
|
|
66
|
+
}
|
|
67
|
+
}
|