-
-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 805 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 805 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": "swc-plugins",
"packageManager": "pnpm@10.4.1",
"private": true,
"scripts": {
"prepare": "husky install",
"test": "pnpm -F '@swc/*' -F '@swc-contrib/*' run test"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@swc/core": "^1.15.0",
"@taplo/cli": "^0.7.0",
"@types/node": "^22.13.9",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"vitest": "^3.0.7"
},
"lint-staged": {
"*.toml": [
"taplo format"
],
"*.rs": [
"cargo fmt --"
],
"!(**/tests/**/*)*.js": [
"prettier --write"
],
"!(**/tests/**/*)*.ts": [
"prettier --write"
],
"!(**/tests/**/*)*.jsx": [
"prettier --write"
],
"!(**/tests/**/*)*.tsx": [
"prettier --write"
]
}
}