-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.06 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
{
"name": "@drfok/opencode-ttc-plugin",
"version": "0.1.4",
"private": false,
"type": "module",
"description": "OpenCode plugin that allows input compression via The Token Company API",
"scripts": {
"test": "node --test tests/*.test.js",
"smoke:plugin": "node scripts/plugin-smoke.mjs",
"plugin:install": "node scripts/cli.mjs install",
"plugin:doctor": "node scripts/cli.mjs doctor",
"plugin:uninstall": "node scripts/cli.mjs uninstall"
},
"bin": {
"opencode-ttc-plugin": "scripts/cli.mjs",
"opencode-ttc-plugin-install": "scripts/cli.mjs",
"opencode-ttc-plugin-doctor": "scripts/cli.mjs",
"opencode-ttc-plugin-uninstall": "scripts/cli.mjs"
},
"exports": {
".": "./opencode-plugins/ttc-message-transform.js",
"./server": "./opencode-plugins/ttc-message-transform.js",
"./tui": "./tui/index.tsx",
"./tui-settings": "./tui/settings.js",
"./tui-state": "./tui/sidebar-state.js",
"./plugin": "./opencode-plugins/ttc-message-transform.js",
"./plugin-core": "./opencode-plugins/ttc-message-transform-core.js"
},
"oc-plugin": [
"server",
"tui"
],
"files": [
"opencode-plugins/ttc-message-transform.js",
"opencode-plugins/ttc-message-transform-core.js",
"tui/index.tsx",
"tui/settings.js",
"tui/sidebar-state.js",
"scripts/cli.mjs",
"README.md",
".env.example",
"LICENSE",
"SECURITY.md"
],
"engines": {
"node": ">=20"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.4.0"
},
"dependencies": {
"@opentui/core": "0.2.8",
"@opentui/solid": "0.2.8",
"solid-js": "1.9.12"
},
"main": "opencode-plugins/ttc-message-transform.js",
"repository": {
"type": "git",
"url": "git+https://github.com/MrFok/opencode-ttc-plugin.git"
},
"keywords": [
"opencode",
"opencode-plugin",
"token-company",
"prompt-compression",
"ttc"
],
"author": "DrFok",
"license": "ISC",
"bugs": {
"url": "https://github.com/MrFok/opencode-ttc-plugin/issues"
},
"homepage": "https://github.com/MrFok/opencode-ttc-plugin#readme"
}