-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.54 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.54 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
{
"name": "tokenometer-monorepo",
"private": true,
"version": "0.0.0",
"description": "Tokenometer — LLM cost calculator, token counter, latency benchmark, and CI cost-guardrail Action for Claude, GPT-4o, Gemini, Mistral, and Cohere. Includes VS Code extension and Claude Code skill.",
"license": "MIT",
"author": "Faraazuddin Mohammed <mohdfaraaz1@gmail.com>",
"homepage": "https://tokenometer.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/faraa2m/tokenometer.git"
},
"bugs": {
"url": "https://github.com/faraa2m/tokenometer/issues"
},
"engines": {
"node": "24.x"
},
"workspaces": ["packages/*", "apps/*"],
"scripts": {
"build": "tsc -b && npm run build --workspaces --if-present",
"clean": "tsc -b --clean && rm -rf packages/*/dist apps/*/dist",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc -b",
"benchmarks": "node benchmarks/run.mjs",
"benchmarks:empirical": "node benchmarks/run.mjs --empirical",
"benchmarks:regenerate": "node benchmarks/run.mjs --regenerate",
"smoke": "bash scripts/smoke.sh",
"changeset:version": "changeset version && npm run lint:fix"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.27.11",
"@types/node": "^22.10.5",
"typescript": "^5.7.2",
"vitest": "^3.0.0"
},
"overrides": {
"undici": "^6.24.0"
}
}