-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.19 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
{
"name": "opencode-usage-tracker",
"version": "0.1.0",
"private": true,
"description": "Local-first OpenCode usage analytics for CLI and web.",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"build": "pnpm -r build",
"build:packages": "pnpm --filter @oct/core build && pnpm --filter @oct/i18n build",
"predev": "pnpm build",
"dev": "pnpm --filter @oct/web dev",
"lint": "eslint .",
"format": "prettier --check .",
"format:write": "prettier --write .",
"pretest": "pnpm build:packages",
"test": "vitest run",
"test:watch": "vitest",
"pretypecheck": "pnpm build:packages",
"typecheck": "pnpm -r typecheck",
"precli": "pnpm build",
"cli": "pnpm --filter @oct/cli oct",
"preweb": "pnpm build",
"web": "pnpm --filter @oct/web dev"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/node": "^24.0.10",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}