-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
47 lines (47 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
{
"name": "swc-extra-packages-workspace",
"packageManager": "[email protected]",
"private": true,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/swc"
},
"scripts": {
"prepare": "husky install && git config feature.manyFiles true",
"test": "lerna run test",
"lint": "lerna run lint"
},
"lint-staged": {
"*.toml": [
"taplo format"
],
"*.rs": [
"rustfmt --"
],
"!(**/tests/**/*)*.js": [
"prettier --write"
],
"!(**/tests/**/*)*.ts": [
"prettier --write"
],
"!(**/tests/**/*)*.jsx": [
"prettier --write"
],
"!(**/tests/**/*)*.tsx": [
"prettier --write"
],
"**": [
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@taplo/cli": "^0.5.2",
"cross-env": "^7.0.3",
"cspell": "^6.31.1",
"husky": "^8.0.3",
"lerna": "^8.0.2",
"lint-staged": "^13.2.3",
"prettier": "^2"
}
}