-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 KB
/
package.json
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
47
48
49
50
51
52
53
{
"name": "ts-lib-workspace",
"private": true,
"keywords": ["multi-root ready"],
"homepage": "https://jrson.me",
"bugs": {
"url": "https://github.com/jrson83/ts-lib/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jrson83/ts-lib.git"
},
"license": "MIT",
"author": {
"name": "Jörn Spangenberg",
"email": "[email protected]",
"url": "https://jrson.me"
},
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"reinstall": "pnpm run clean:modules && pnpm install",
"clean": "pnpm --stream --recursive clean",
"clean:modules": "node ./.scripts/clean-modules.mjs",
"lint": "biome lint --write .",
"fmt": "biome format . --write",
"build": "pnpm --stream --recursive build",
"test": "NODE_OPTIONS=\"--no-deprecation\" vitest",
"test:run": "NODE_OPTIONS=\"--no-deprecation\" vitest run",
"changelogs": "node ./.scripts/changelogs.mjs",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@bscotch/workspaces": "^0.3.0",
"@types/node": "^22.10.1",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"pkgroll": "^2.5.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.12.0",
"pnpm": ">=9.15.0"
},
"nano-staged": {
"*.ts": "biome lint --write .",
"*": "biome format . --write"
},
"packageManager": "[email protected]"
}