-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 911 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 911 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
{
"name": "chronos-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc && pnpm --filter @sx4im/chronos-inspector typecheck",
"lint": "eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@types/node": "^22.20.1",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^9.39.5",
"prettier": "^3.9.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.11"
},
"packageManager": "pnpm@9.0.0",
"pnpm": {
"overrides": {
"esbuild@>=0.27.3 <0.28.1": ">=0.28.1",
"nanoid@^3": "^3.3.18",
"postcss@>=8 <9": "^8.5.23",
"brace-expansion@>=4.0.0 <5.0.8": ">=5.0.9"
}
}
}