-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.61 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
{
"name": "opencode-translate",
"version": "1.0.5",
"description": "OpenCode plugin that lets the user chat in a configured language while the main chat loop only sees English.",
"type": "module",
"main": "src/index.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ysm-dev/opencode-translate.git"
},
"bugs": {
"url": "https://github.com/ysm-dev/opencode-translate/issues"
},
"homepage": "https://github.com/ysm-dev/opencode-translate#readme",
"keywords": [
"opencode",
"opencode-plugin",
"translate",
"translation",
"i18n"
],
"files": [
"src",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsgo --noEmit",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint --write .",
"lint:check": "biome lint .",
"knip": "knip",
"check": "biome check --write .",
"check:ci": "biome check .",
"test": "bun test",
"test:coverage": "bun test --coverage"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.14.0"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^4.0.96",
"@ai-sdk/anthropic": "^3.0.71",
"@ai-sdk/google": "^3.0.64",
"@ai-sdk/google-vertex": "^4.0.112",
"@ai-sdk/openai": "^3.0.53",
"@ai-sdk/openai-compatible": "^2.0.41",
"ai": "^6.0.168"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@opencode-ai/plugin": "^1.14.21",
"@types/node": "^25.6.0",
"@typescript/native-preview": "beta",
"bun-types": "^1.3.13",
"knip": "^6.14.1"
}
}