-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.69 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
{
"name": "opencode-translate",
"version": "2.0.8",
"description": "OpenCode plugin that lets the user chat in a configured language while the main chat loop only sees English.",
"type": "module",
"main": "dist/index.js",
"types": "index.d.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": [
"dist",
"index.d.ts",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun build src/index.ts --outfile dist/index.js --target node --format esm --packages external",
"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",
"test:package": "node scripts/package-smoke.mjs",
"test:host": "bun run build && node scripts/host-smoke.mjs",
"prepare": "bun run build",
"prepack": "bun run build"
},
"dependencies": {
"@opencode/plugin": "2.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@opencode/ai": "2.0.3",
"@types/node": "^25.6.0",
"@typescript/native-preview": "beta",
"bun-types": "^1.3.13",
"knip": "^6.14.1",
"effect": "4.0.0-rc.112"
}
}