claude-glm-alt-installer 2.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.
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "claude-glm-alt-installer",
3
+ "version": "2.0.0",
4
+ "description": "Cross-platform installer for Claude Code with Z.AI GLM models and multi-provider proxy. Run with: npx claude-glm-alt-installer",
5
+ "keywords": [
6
+ "claude",
7
+ "claude-code",
8
+ "glm",
9
+ "z.ai",
10
+ "openai",
11
+ "openrouter",
12
+ "gemini",
13
+ "ai",
14
+ "llm",
15
+ "installer",
16
+ "proxy"
17
+ ],
18
+ "homepage": "https://github.com/MohMaya/claude-glm-wrapper#readme",
19
+ "bugs": {
20
+ "url": "https://github.com/MohMaya/claude-glm-wrapper/issues"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/MohMaya/claude-glm-wrapper.git"
25
+ },
26
+ "license": "MIT",
27
+ "author": "Joseph Stephenson-Mouzo",
28
+ "contributors": [
29
+ "Shivanshu Chaudhary"
30
+ ],
31
+ "type": "module",
32
+ "bin": {
33
+ "claude-glm-alt-installer": "bin/cli.js"
34
+ },
35
+ "files": [
36
+ "bin/",
37
+ "adapters/",
38
+ "install.sh",
39
+ "install.ps1",
40
+ "tsconfig.json",
41
+ "README.md",
42
+ "LICENSE"
43
+ ],
44
+ "scripts": {
45
+ "preinstall": "node bin/preinstall.js",
46
+ "start:proxy": "tsx adapters/anthropic-gateway.ts",
47
+ "build": "tsc -p tsconfig.json",
48
+ "test": "echo \"No tests yet\" && exit 0"
49
+ },
50
+ "engines": {
51
+ "node": ">=18.0.0"
52
+ },
53
+ "dependencies": {
54
+ "dotenv": "^16.4.5",
55
+ "eventsource-parser": "^1.1.2",
56
+ "fastify": "^4.28.1"
57
+ },
58
+ "devDependencies": {
59
+ "@types/node": "^20.14.0",
60
+ "tsx": "^4.15.6",
61
+ "typescript": "^5.6.3"
62
+ }
63
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "ES2022",
5
+ "moduleResolution": "Bundler",
6
+ "strict": true,
7
+ "skipLibCheck": true,
8
+ "resolveJsonModule": true,
9
+ "esModuleInterop": true,
10
+ "outDir": "dist",
11
+ "rootDir": "."
12
+ },
13
+ "include": ["adapters/**/*.ts"]
14
+ }