-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.87 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.87 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "opencode-ccs-sync",
"version": "1.0.1",
"description": "Automatically syncs CCS (Claude Code Switch) CLIProxy providers and models with OpenCode",
"keywords": [
"opencode",
"ccs",
"plugin",
"bun",
"jsonc"
],
"homepage": "https://github.com/JasonLandbridge/opencode-ccs-sync#readme",
"bugs": {
"url": "https://github.com/JasonLandbridge/opencode-ccs-sync/issues"
},
"author": {
"name": "JasonLandbridge",
"email": "jasonlandbridge@protonmail.com"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/JasonLandbridge/opencode-ccs-sync.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir dist --target bun",
"build:types": "bunx tsc -p tsconfig.build.json",
"lint": "eslint .",
"test": "bun test",
"typecheck": "bunx tsc --noEmit",
"prepack": "bun run build && bun run build:types",
"prepublishOnly": "bun run test && bun run lint && bun run typecheck"
},
"dependencies": {
"@opencode-ai/plugin": "^1.3.13",
"@opencode-ai/sdk": "^1.3.13",
"chokidar": "^4.0.3",
"jsonc-parser": "^3.3.1",
"yaml": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"bun-types": "^1.3.11",
"eslint": "^9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"typescript-eslint": "^8.58.0",
"vitest": "^3.2.4"
}
}