-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 960 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 960 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
{
"name": "oxc-node",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.19.0",
"devDependencies": {
"@napi-rs/cli": "catalog:",
"@napi-rs/wasm-runtime": "^1.0.1",
"@oxc-node/cli": "workspace:*",
"@oxc-node/core": "workspace:*",
"@oxc-project/runtime": "^0.96.0",
"@types/node": "^24.1.0",
"ava": "^6.4.1",
"cross-env": "^10.0.0",
"dprint": "^0.50.1",
"emnapi": "^1.4.5",
"husky": "^9.1.7",
"lerna": "^9.0.0",
"lint-staged": "^16.1.2",
"npm-run-all2": "^8.0.4",
"oxlint": "^1.8.0",
"typescript": "^5.8.3"
},
"scripts": {
"bench": "pnpm --filter=bench bench",
"format": "dprint fmt && cargo fmt",
"lint": "oxlint",
"test": "pnpm --sequential --filter=integrate* run test",
"prepare": "husky"
},
"lint-staged": {
"*.@(js|ts|tsx|yml|yaml|md|json|html|toml)": [
"dprint fmt"
],
"*.@(js|ts|tsx)": [
"oxlint --fix"
]
}
}