-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 733 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 733 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
{
"name": "todo",
"version": "0.1.0",
"type": "module",
"main": "src/index.ts",
"scripts": {
"dev": "node src/index.ts",
"format": "oxfmt",
"format:dry": "oxfmt --check",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"typecheck": "tsgo --build",
"test": "vitest watch",
"test:run": "vitest run",
"check": "pnpm format:dry && pnpm lint && pnpm typecheck && pnpm test:run"
},
"devDependencies": {
"@types/node": "24 - 24.13",
"@typescript/native-preview": "7.0.0-dev.20260224.1",
"oxfmt": "^0.35.0",
"oxlint": "^1.42.0",
"oxlint-tsgolint": "^0.14.0",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.30.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}