2020-12-13 23:06:17 +08:00
|
|
|
{
|
|
|
|
|
"name": "root",
|
|
|
|
|
"private": true,
|
2020-12-26 01:37:53 +08:00
|
|
|
"type": "module",
|
2020-12-13 23:06:17 +08:00
|
|
|
"devDependencies": {
|
2023-05-24 17:38:24 +08:00
|
|
|
"@lerna-lite/cli": "^2.4.0",
|
2023-05-24 18:00:50 +08:00
|
|
|
"@lerna-lite/run": "^2.4.0",
|
|
|
|
|
"@lerna-lite/publish": "^2.4.0"
|
2020-12-13 23:06:17 +08:00
|
|
|
},
|
2021-02-05 17:07:49 +08:00
|
|
|
"scripts": {
|
|
|
|
|
"start": "lerna bootstrap --hoist",
|
2023-05-24 17:49:39 +08:00
|
|
|
"i-all": "lerna link && lerna exec npm install ",
|
2023-05-24 18:04:50 +08:00
|
|
|
"publish": "npm run proxy && npm run prepublishOnly1 && lerna publish --conventional-commits && npm run afterpublishOnly",
|
|
|
|
|
"afterpublishOnly1": "",
|
2023-05-24 17:53:28 +08:00
|
|
|
"proxy": "npm config set proxy=http://127.0.0.1:10809",
|
2023-05-24 17:49:39 +08:00
|
|
|
"prepublishOnly": "npm run before-build && lerna run build ",
|
|
|
|
|
"before-build": "cd ./packages/core/acme-client && time /t >build.md && git add ./build.md && git commit -m \"build: prepare to build\""
|
2021-02-05 17:07:49 +08:00
|
|
|
},
|
2020-12-26 01:37:53 +08:00
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2023-05-09 09:49:42 +08:00
|
|
|
"lodash": "^4.17.21"
|
2022-12-29 23:52:51 +08:00
|
|
|
},
|
|
|
|
|
"workspaces": [
|
|
|
|
|
"packages/**"
|
|
|
|
|
]
|
2020-12-13 23:06:17 +08:00
|
|
|
}
|