-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "opencode-workspace-env",
"version": "0.1.2",
"description": "OpenCode plugin for per-workspace env injection via shell.env hook",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "bun test",
"build": "tsc",
"typecheck": "tsgo --noEmit",
"lint": "oxlint",
"check": "bun test && bun run typecheck",
"format": "biome format --write .",
"prepublishOnly": "bun run build"
},
"keywords": [
"opencode",
"plugin",
"workspace",
"environment",
"direnv",
"nix"
],
"author": "OpenCode Team",
"files": [
"dist",
"README.md",
"LICENSE"
],
"license": "MIT",
"repository": "github:yimsk/opencode-workspace-env",
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@nkzw/oxlint-config": "^1.0.1",
"@types/bun": "latest",
"@types/node": "^24.5.2",
"@typescript/native-preview": "^7.0.0-dev.20260310.1",
"oxlint": "^1.56.0",
"typescript": "^5.4.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
}
}