-
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) · 977 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 977 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": "paykitjs-root",
"private": true,
"description": "Open payments orchestration for modern SaaS",
"repository": {
"type": "git",
"url": "https://github.com/getpaykit/paykit"
},
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"format": "oxfmt --write",
"format:check": "oxfmt --check",
"lint": "oxlint --deny-warnings",
"lint:fix": "oxlint --fix",
"typecheck": "tsc --build",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@types/node": "catalog:",
"lint-staged": "^16.2.7",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"simple-git-hooks": "^2.13.1",
"turbo": "^2.8.10",
"typescript": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged && pnpm typecheck"
},
"lint-staged": {
"*": [
"oxlint --fix",
"oxfmt --write"
]
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.4.1"
}