-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 974 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 974 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
{
"name": "oxc-node",
"version": "0.0.0",
"private": true,
"scripts": {
"bench": "pnpm --filter=bench bench",
"fmt": "oxfmt && cargo fmt",
"lint": "oxlint",
"test": "pnpm --sequential --filter=integrate* run test",
"prepare": "husky"
},
"devDependencies": {
"@napi-rs/cli": "catalog:",
"@napi-rs/wasm-runtime": "^1.0.1",
"@oxc-node/cli": "workspace:*",
"@oxc-node/core": "workspace:*",
"@oxc-project/runtime": "^0.116.0",
"@types/node": "^25.0.0",
"ava": "^6.4.1",
"cross-env": "^10.0.0",
"emnapi": "^1.4.5",
"husky": "^9.1.7",
"lerna": "^9.0.0",
"lint-staged": "^16.1.2",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.16.0",
"typescript": "^5.8.3"
},
"lint-staged": {
"*": [
"oxfmt --no-error-on-unmatched-pattern"
],
"*.@(js|ts|tsx)": [
"oxlint --fix"
]
},
"packageManager": "[email protected]"
}