-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "repository",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"push": "turbo run push",
"exec": "turbo run exec",
"test": "turbo run test",
"check": "turbo run check",
"release": "turbo run build && pnpm publish -r",
"prepare": "husky",
"biome": "biome check --no-errors-on-unmatched",
"prettier": "prettier --check --ignore-path .config/.prettierignore --ignore-path .gitignore",
"format": "pnpm prettier . && pnpm biome --write .",
"lint": "pnpm prettier --check . && pnpm biome .",
"clasp": "@google/clasp"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.28.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.4.2",
"turbo": "^2.4.4",
"typescript": "catalog:"
},
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6",
"engines": {
"node": ">=18"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"type": "module"
}