This repository was archived by the owner on Apr 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.55 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
{
"name": "not-claude-code-emulator",
"version": "1.1.0",
"description": "Hono-based OAuth server for Anthropic API with Claude Code-style OAuth integration",
"license": "MIT",
"type": "module",
"bin": {
"not-claude-code-emulator": "src/cli.ts"
},
"files": [
"src",
"!src/**/*.test.ts",
"!src/services/tests",
"README.md",
".env.template",
"claude-code-emulator.png"
],
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"cli": "bun run src/cli.ts",
"build": "bun build src/index.ts --outdir=dist --target=bun",
"typecheck": "tsc --noEmit",
"lint": "bunx --bun prettier --check .",
"format": "bunx --bun prettier --write .",
"test": "bun test",
"docs:generate": "bun run src/scripts/generate-openapi.ts",
"verify:token": "bun run src/cli.ts verify-token",
"prepack": "bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-yeongyu/not-claude-code-emulator.git"
},
"homepage": "https://github.com/code-yeongyu/not-claude-code-emulator#readme",
"bugs": {
"url": "https://github.com/code-yeongyu/not-claude-code-emulator/issues"
},
"dependencies": {
"@hono/zod-openapi": "^0.18.0",
"@scalar/hono-api-reference": "^0.5.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"hono": "^4.6.0",
"xxhash-wasm": "^1.1.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.3.0",
"typescript": "^5.5.0"
},
"engines": {
"bun": ">=1.1.0"
}
}