-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.34 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "oc-usage-limits-plugin",
"version": "1.6.1",
"description": "OpenCode TUI plugin that shows Codex, ZAI, Synthetic, and MiniMax Token Plan usage limits in the sidebar and prompt footer.",
"keywords": [
"codex",
"minimax",
"minimax-token-plan",
"opencode",
"opencode-plugin",
"synthetic",
"tui",
"usage-limits",
"zai"
],
"homepage": "https://github.com/mynameistito/oc-usage-limits-plugin#readme",
"bugs": {
"url": "https://github.com/mynameistito/oc-usage-limits-plugin/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mynameistito/oc-usage-limits-plugin.git"
},
"files": [
"dist",
"examples",
"usage-limits.schema.json",
"README.md",
"LICENSE"
],
"type": "module",
"exports": {
"./tui": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./schema": "./usage-limits.schema.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"changeset": "changeset",
"changeset-add": "bun ./scripts/changeset-add.ts",
"build": "tsdown",
"check": "ultracite check",
"knip": "bunx knip@latest",
"prepack": "bun run build",
"release": "changeset publish",
"test": "bun test",
"test:package": "bun run build && bun ./scripts/test-package.ts",
"typecheck": "tsc --noEmit",
"version": "changeset version",
"fix": "ultracite fix",
"prepare": "lefthook install"
},
"dependencies": {
"effect": "4.0.0-beta.83"
},
"devDependencies": {
"@changesets/cli": "^3.0.1",
"@opencode-ai/plugin": "1.18.21",
"@opentui/core": "0.5.6",
"@opentui/keymap": "0.5.6",
"@opentui/solid": "0.5.6",
"@types/bun": "1.4.0",
"@types/node": "26.2.0",
"@typescript/native": "npm:typescript@^7.0.2",
"eslint-plugin-github": "6.1.2",
"eslint-plugin-sonarjs": "^4.2.0",
"lefthook": "^2.1.10",
"oxfmt": "^0.64.0",
"oxlint": "^1.79.0",
"solid-js": "1.9.12",
"tsdown": "^0.22.14",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"ultracite": "7.10.6"
},
"peerDependencies": {
"@opentui/core": "0.5.6",
"@opentui/solid": "0.5.6",
"solid-js": "1.9.12"
},
"overrides": {
"@babel/core": "7.29.7",
"js-yaml": "5.2.3",
"read-yaml-file": "3.0.0",
"seroval": "1.6.2"
}
}