-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 752 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 752 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
{
"name": "riffyh",
"version": "1.0.0",
"private": true,
"workspaces": [
"client/",
"example/",
"server/",
"adapter/*",
"packages/*"
],
"scripts": {
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "2.31.1",
"@tsconfig/bun": "1.0.10",
"@types/bun": "1.3.14",
"@types/node": "26.0.1",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"oxfmt": "0.56.0",
"oxlint": "1.71.0",
"turbo": "2.10.0",
"typescript": "6.0.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": "bun run lint",
"!(*.lock)": "bun run fmt"
},
"packageManager": "bun@1.3.14"
}