-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.06 KB
/
package.json
File metadata and controls
80 lines (80 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
75
76
77
78
79
80
{
"name": "@ymchun/opencode-ollama-usage",
"version": "1.1.2",
"description": "An opencode TUI plugin for Ollama usage information.",
"keywords": [
"agentic-ai",
"agentic-coding",
"ai-devtools",
"ollama-integration",
"ollama",
"opencode-plugin",
"opencode",
"quota-tracking",
"usage-monitor"
],
"homepage": "https://github.com/ymchun/opencode-ollama-usage",
"bugs": {
"url": "https://github.com/ymchun/opencode-ollama-usage/issues"
},
"repository": {
"url": "https://github.com/ymchun/opencode-ollama-usage"
},
"license": "MIT",
"type": "module",
"exports": {
"./tui": {
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx}'",
"lint": "eslint src/",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@opencode-ai/plugin": ">=1.0.0",
"@opentui/core": ">=0.2.15",
"@opentui/solid": ">=0.2.15",
"@types/bun": "^1.3.14",
"@types/node": "^25.9.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"cspell": "^10.0.0",
"esbuild-plugin-solid": "^0.6.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-prettier": "^5.5.6",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"sort-package-json": "^3.6.1",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.60.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0",
"@opentui/core": ">=0.2.15",
"@opentui/solid": ">=0.2.15",
"solid-js": "1.9.12"
},
"engines": {
"opencode": ">=1.0.0"
},
"publishConfig": {
"access": "public"
}
}