@guanghechen/kit-copilot 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/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@guanghechen/kit-copilot",
3
+ "version": "0.1.0",
4
+ "description": "AI API proxy server routing through GitHub Copilot",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "source": "./src/index.ts",
9
+ "import": "./lib/esm/index.mjs"
10
+ },
11
+ "./cli": {
12
+ "source": "./src/cli/index.ts",
13
+ "import": "./lib/esm/cli.mjs"
14
+ }
15
+ },
16
+ "source": "./src/index.ts",
17
+ "module": "./lib/esm/index.mjs",
18
+ "bin": {
19
+ "kit-copilot": "./lib/esm/cli.mjs"
20
+ },
21
+ "engines": {
22
+ "node": ">=24.0.0"
23
+ },
24
+ "rollupConfig": {
25
+ "shebang": [
26
+ "cli"
27
+ ],
28
+ "copyAssets": [
29
+ "src/tokenizer/data"
30
+ ]
31
+ },
32
+ "files": [
33
+ "lib/esm/",
34
+ "!lib/**/*.map",
35
+ "package.json",
36
+ "LICENSE",
37
+ "README.md"
38
+ ],
39
+ "keywords": [
40
+ "copilot",
41
+ "ai-proxy",
42
+ "claude",
43
+ "openai",
44
+ "gemini"
45
+ ],
46
+ "license": "MIT",
47
+ "dependencies": {
48
+ "@guanghechen/commander": "^3.0.0",
49
+ "@guanghechen/reporter": "^3.0.1",
50
+ "@hono/node-server": "^1.14.1",
51
+ "@microsoft/tiktokenizer": "^1.0.10",
52
+ "ajv": "^8.17.1",
53
+ "ajv-formats": "^3.0.1",
54
+ "hono": "^4.7.7",
55
+ "uuid": "^11.1.0",
56
+ "zod": "^3.24.2"
57
+ },
58
+ "scripts": {
59
+ "build": "cross-env ROLLUP_OBFUSCATE=true rollup -c ../../rollup.config.mjs",
60
+ "build:link": "pnpm build && npm link --force",
61
+ "clean": "rimraf lib",
62
+ "test": "vitest run --config ../../vitest.config.ts",
63
+ "test:coverage": "vitest run --config ../../vitest.config.ts --coverage"
64
+ }
65
+ }