-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 915 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 915 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
{
"name": "boltzpay",
"private": true,
"license": "MIT",
"author": "leventilo (https://github.com/leventilo)",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "turbo test",
"clean": "turbo clean",
"format": "biome format --write .",
"check:exports": "turbo run check:exports",
"check:size": "node scripts/check-size.mjs",
"bump": "node scripts/bump-versions.mjs",
"prepare": "husky"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.4.2",
"@boltzpay/config": "workspace:*",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"husky": "^9.1.7",
"publint": "^0.3.17",
"turbo": "^2.8.9",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.33.1",
"engines": {
"node": ">=20.0.0"
}
}