-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 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
39
40
41
42
43
44
45
46
47
{
"private": true,
"license": "MIT",
"author": "bedrock-apis",
"workspaces": [
"packages/*",
"app",
"benchmarks"
],
"type": "module",
"scripts": {
"it": "oxfmt --write && turbo check -- --pretty && turbo run build",
"build": "turbo run build",
"watch": "turbo run watch",
"--vitest--": "",
"test": "vitest --run",
"bench": "vitest bench --run",
"--checks--": "",
"fmt": "oxfmt --write",
"lint": "oxlint --fix-suggestions",
"check": "turbo check -- --pretty && oxlint && oxfmt --check",
"check:ts": "turbo check -- --pretty",
"check:fmt": "oxfmt --check",
"check:lint": "oxlint"
},
"devDependencies": {
"@types/bun": "^1.3.2",
"@types/node": "^24.10.1",
"@typescript/native-preview": "7.0.0-dev.20260211.1",
"oxfmt": "0.31.0",
"oxlint": "^1.46.0",
"rolldown": "1.0.0-rc.1",
"rolldown-plugin-dts": "^0.21.6",
"turbo": "^2.6.1",
"typescript": "6.0.0-dev.20260211",
"vitest": "^4.0.10"
},
"prettier": {
"arrowParens": "avoid",
"endOfLine": "lf",
"printWidth": 120,
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 3
},
"packageManager": "pnpm@10.29.2"
}