-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.47 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.47 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
{
"name": "@staskorz/node24-template",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "src/index.ts",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "node --watch ./src/index.ts",
"start": "node ./src/index.ts",
"typecheck": "tsgo --noEmit",
"test": "vitest run --exclude '**/*.wet.test.ts'",
"test:verbose": "vitest run --exclude '**/*.wet.test.ts' --no-file-parallelism --reporter=verbose",
"test:watch": "vitest --exclude '**/*.wet.test.ts'",
"test:coverage": "vitest run --exclude '**/*.wet.test.ts' --coverage",
"test:wet": "vitest run --test-timeout 30000 '.wet.test.ts'",
"wet": "vitest run --test-timeout 30000 '.wet.test.ts'",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"fix": "biome check --fix .",
"format": "biome format --write .",
"pre-push": "pnpm lint && pnpm typecheck && pnpm test",
"check": "pnpm lint && pnpm typecheck && pnpm test",
"all": "pnpm lint && pnpm typecheck && pnpm test && pnpm wet",
"reinstall": "rm -rf ./pnpm-lock.yaml ./node_modules && pnpm install"
},
"packageManager": "[email protected]+sha512.48dae233635a645768a3028d19545cacc1688639eeb1f3734e42d6d6b971afbf22aa1ac9af52a173d9c3a20c15857cfa400f19994d79a2f626fcc73fccda9bbc",
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/node": "^24",
"@typescript/native-preview": "7.0.0-dev.20260208.1",
"@vitest/coverage-v8": "^4.0.16",
"vitest": "^4.0.16"
}
}