-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 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
{
"name": "opencode-multi-copilot",
"version": "0.1.0",
"description": "OpenCode plugin for managing multiple GitHub Copilot accounts with seamless switching.",
"author": "Jackey",
"type": "module",
"homepage": "https://github.com/YZJ0716/opencode-multi-copilot",
"repository": {
"type": "git",
"url": "git+https://github.com/YZJ0716/opencode-multi-copilot.git"
},
"bugs": {
"url": "https://github.com/YZJ0716/opencode-multi-copilot/issues"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist",
".opencode"
],
"scripts": {
"clean": "node -e \"import('node:fs/promises').then(fs=>fs.rm('dist',{recursive:true,force:true}))\"",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --test dist/tests/*.test.js",
"prepublishOnly": "npm run typecheck && npm run build && npm test"
},
"keywords": [
"opencode",
"plugin",
"github-copilot",
"multi-account",
"github-enterprise",
"oauth"
],
"license": "MIT",
"sideEffects": false,
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.24"
},
"devDependencies": {
"@types/node": "^25.4.0",
"typescript": "^5.9.3"
}
}