-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 975 Bytes
/
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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"build": "pnpm -r build",
"lint": "eslint --fix packages/**/*.{ts,js,json}",
"release": "pnpm build && bumpp packages/*/package.json --commit \"release: v\" --push --tag && pnpm -r release"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@types/node": "^18.18.0",
"@youcan/lint": "^3.0.6",
"bumpp": "^9.2.0",
"dotenv": "^16.3.1",
"eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3",
"glob": "^11.0.0",
"rollup": "^4.27.4",
"rollup-plugin-node-externals": "^6.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.8.1",
"typescript": "5.1.6"
},
"pnpm": {
"overrides": {
"braces@<3.0.3": ">=3.0.3",
"ejs@<3.1.10": ">=3.1.10",
"tar@<6.2.1": ">=6.2.1",
"ws@>=8.0.0 <8.17.1": ">=8.17.1"
}
}
}