-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.54 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@putstack/root",
"version": "1.0.0",
"license": "MIT",
"author": "Putro",
"description": "Root package for @putstack/* configuration packages that are also generally released standalone",
"repository": "https://github.com/Pewtro/configs",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": "^20.19 || >=22"
},
"packageManager": "pnpm@10.33.2",
"devDependencies": {
"@arethetypeswrong/core": "0.18.2",
"@changesets/cli": "2.31.0",
"@putstack/eslint-config-typescript": "workspace:*",
"@putstack/prettier-config": "workspace:*",
"@types/node": "24.12.2",
"@vitest/coverage-v8": "4.1.5",
"@vitest/ui": "4.1.5",
"eslint": "10.2.1",
"lefthook": "2.1.6",
"npm-run-all2": "8.0.4",
"prettier": "3.8.3",
"publint": "0.3.18",
"tsdown": "0.21.10",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0",
"vitest": "4.1.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook",
"unrs-resolver"
]
},
"scripts": {
"build": "pnpm -r build",
"lint": "eslint --format stylish --max-warnings 0 --cache",
"lint:fix": "pnpm lint --fix",
"prepare": "lefthook install",
"release": "changeset publish",
"stylecheck": "prettier --check .",
"test": "vitest run",
"test:ci": "npm-run-all -p -l \"lint .\" typecheck stylecheck test",
"test:coverage": "pnpm run test --coverage",
"test:ui": "vitest --ui --coverage",
"test:watch": "vitest watch",
"typecheck": "tsc"
}
}