-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.9 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.9 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
73
74
75
76
77
{
"name": "opencode-toon-plugin",
"version": "0.1.2",
"description": "OpenCode plugin that compacts large JSON tool output with Toon.",
"author": "Frederik Bosch",
"license": "MIT",
"homepage": "https://github.com/fbosch/opencode-toon-plugin#readme",
"repository": {
"type": "git",
"url": "https://github.com/fbosch/opencode-toon-plugin.git"
},
"bugs": {
"url": "https://github.com/fbosch/opencode-toon-plugin/issues"
},
"keywords": [
"opencode",
"plugin",
"toon",
"json"
],
"packageManager": "bun@1.3.10",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"opencode": {
"type": "plugin",
"hooks": [
"tool.execute.before",
"tool.execute.after"
]
},
"scripts": {
"bench": "bun scripts/benchmark-json-detection.ts",
"build": "tsc -p tsconfig.json",
"format": "biome check --write .",
"lint": "biome check .",
"lint-staged": "lint-staged",
"prepublishOnly": "bun audit && bun run test && bun run build",
"test": "bun --env-file=.env.test test test/plugin.test.ts --passWithNoTests",
"test:integration": "bun run build && bun --env-file=.env.test test test/opencode.integration.test.ts",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.{ts,js,mjs,cjs,json,jsonc,md}": "biome check --write"
},
"dependencies": {
"@toon-format/toon": "^2.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@opencode-ai/plugin": "^1.3.3",
"@types/node": "^25.5.0",
"lint-staged": "^17.0.2",
"typescript": "^6.0.2"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"overrides": {
"picomatch": "^4.0.4",
"yaml": "^2.8.3"
}
}