-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"private": true,
"packageManager": "yarn@4.2.2",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"dev": "lerna run dev --parallel --stream",
"dev:ssl": "lerna run dev:ssl --parallel --stream",
"build": "lerna run build",
"lint": "lerna run lint",
"test": "lerna run test",
"clean": "rimraf --glob 'packages/*/dist/*' 'sandbox/*'",
"postversion": "yarn postversion:check && yarn postversion:commit && yarn postversion:push",
"postversion:check": "yarn lint && yarn test",
"postversion:commit": "node scripts/postversion-commit.js",
"postversion:push": "git push && git push --tags",
"prepublish": "yarn lint && yarn test",
"prepack": "yarn clean && yarn build"
},
"devDependencies": {
"@types/meow": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"lerna": "^8.1.8",
"meow": "^13.2.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "<5.6.0",
"vite": "^5.4.10"
},
"resolutions": {
"eslint": "^8.57.0",
"vite": "^5.3.4"
}
}