-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.14 KB
/
package.json
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
48
49
{
"name": "oxc-node",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@9.15.0",
"devDependencies": {
"@napi-rs/cli": "^3.0.0-alpha.64",
"@napi-rs/wasm-runtime": "^0.2.5",
"@oxc-node/cli": "workspace:*",
"@oxc-node/core": "workspace:*",
"@taplo/cli": "^0.7.0",
"@types/node": "^22.10.2",
"ava": "^6.2.0",
"cross-env": "^7.0.3",
"emnapi": "^1.3.1",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.11",
"npm-run-all2": "^7.0.1",
"oxlint": "^0.15.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"scripts": {
"bench": "pnpm --filter=bench bench",
"format": "taplo fmt && prettier --write . && cargo fmt",
"lint": "oxlint",
"test": "pnpm --sequential --filter=integrate* run test",
"prepare": "husky"
},
"lint-staged": {
"*.@(js|ts|tsx|yml|yaml|md|json|html)": [
"prettier --write"
],
"*.@(js|ts|tsx)": [
"oxlint --fix"
],
"*.toml": [
"taplo fmt"
]
},
"prettier": {
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
}
}