-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.15 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.15 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
{
"name": "token-tracker-monorepo",
"private": true,
"type": "module",
"description": "Token Tracker reference server: API + SPA + OTLP ingest. See docs/strategy/scope-and-deployment-STRATEGY.md (in vilosource/pi-extensions) for the three-artifact split this repo participates in.",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b",
"check": "npm run lint:ci && npm run typecheck && npm run depgraph && npm run boundary && npm run test",
"lint": "biome check --write --error-on-warnings .",
"lint:ci": "biome check --error-on-warnings .",
"typecheck": "tsc -b --noEmit",
"depgraph": "depcruise --config .dependency-cruiser.cjs packages",
"boundary": "bash scripts/check-public-boundary.sh",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf packages/*/dist packages/*/.tsbuildinfo .tsbuildinfo"
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@types/node": "^22.10.5",
"dependency-cruiser": "^16.10.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}