-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.31 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
58
{
"name": "mcode-passport",
"version": "0.1.1",
"description": "Use your existing AI subscriptions directly in MiniMax Code.",
"type": "module",
"license": "MIT",
"author": "MiniMax Code contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/hetaoBackend/mcode-passport.git"
},
"homepage": "https://github.com/hetaoBackend/mcode-passport#readme",
"bugs": "https://github.com/hetaoBackend/mcode-passport/issues",
"bin": {
"mcode-passport": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm test && npm run build"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.81.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^24.10.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"keywords": [
"minimax-code",
"codex",
"claude",
"github-copilot",
"oauth",
"subscription"
]
}