-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 956 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 956 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
35
36
37
38
39
40
41
42
{
"name": "attest-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r --filter './packages/*' build",
"lint": "eslint packages",
"test": "pnpm -r --filter './packages/*' test",
"typecheck": "pnpm -r --filter './packages/*' typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/node": "^25.9.1",
"eslint": "^10.4.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}