-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "pal",
"private": true,
"type": "module",
"scripts": {
"notes": "node --experimental-strip-types scripts/notes-build.ts",
"build": "pnpm -r --if-present --no-bail run build",
"test": "pnpm -r --if-present --no-bail run test",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch",
"typecheck": "pnpm -r --if-present run typecheck",
"lint": "oxlint -c .oxlintrc.json .",
"lint:fix": "oxlint -c .oxlintrc.json --fix .",
"format": "oxfmt .",
"format:check": "oxfmt --check ."
},
"devDependencies": {
"@types/node": "^25.3.2",
"@typescript/native-preview": "7.0.0-dev.20260228.1",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": "24.13.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.29.3",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"fsevents",
"fuse-native",
"leveldown"
]
},
"dependencies": {
"dotenv": "^17.3.1"
}
}