forked from nghyane/ampcode-connector
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "ampcode-connector",
"version": "0.1.21",
"description": "Proxy AmpCode through local OAuth subscriptions (Claude Code, Codex, Gemini CLI, Antigravity)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nghyane/ampcode-connector"
},
"keywords": [
"amp",
"ampcode",
"proxy",
"claude",
"openai",
"gemini",
"oauth"
],
"module": "src/index.ts",
"type": "module",
"files": [
"src/**/*.ts",
"config.yaml",
"tsconfig.json"
],
"publishConfig": {
"access": "public"
},
"bin": {
"ampcode-connector": "src/index.ts"
},
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"setup": "bun run src/index.ts setup",
"login": "bun run src/index.ts login",
"test": "bun test tests/router.test.ts tests/middleware.test.ts tests/rewriter.test.ts tests/forward.test.ts",
"test:e2e": "bun test tests/code-assist.test.ts",
"check": "biome check src/ tests/ && tsc --noEmit && bun run test",
"format": "biome check --write src/ tests/"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@google/genai": "^1.42.0",
"@types/bun": "^1.3.9",
"@types/turndown": "^5.0.6"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@anthropic-ai/sdk": "0.74.0",
"exa-js": "^2.4.0",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2"
}
}