-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1023 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1023 Bytes
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
{
"name": "@sleipi/opencode-usage-stats",
"version": "0.0.0-dev",
"description": "Usage statistics tracking and dashboard for OpenCode",
"type": "module",
"main": "./src/plugin.ts",
"exports": {
".": "./src/plugin.ts"
},
"bin": {
"opencode-usage-stats": "./src/dashboard.ts"
},
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "https://github.com/sleipi/opencode-usage-stats-plugin.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dashboard": "bun --watch run src/dashboard.ts",
"check": "biome check .",
"check:fix": "biome check --write .",
"typecheck": "bun x tsc --noEmit",
"test": "bun test tests/unit",
"test:unit": "bun test tests/unit",
"test:e2e": "playwright test"
},
"dependencies": {
"@opencode-ai/plugin": "^1.4.7"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@playwright/test": "^1.59.1",
"@types/bun": "^1.3.13",
"playwright": "^1.59.1"
}
}