2020-12-13 23:06:17 +08:00
|
|
|
{
|
|
|
|
|
"name": "root",
|
2024-03-12 00:33:30 +08:00
|
|
|
"version": "1.20.4",
|
2020-12-13 23:06:17 +08:00
|
|
|
"private": true,
|
2020-12-26 01:37:53 +08:00
|
|
|
"type": "module",
|
2020-12-13 23:06:17 +08:00
|
|
|
"devDependencies": {
|
2024-02-28 10:23:15 +08:00
|
|
|
"@lerna-lite/cli": "^3.2.1",
|
|
|
|
|
"@lerna-lite/publish": "^3.2.1",
|
|
|
|
|
"@lerna-lite/run": "^3.2.1",
|
|
|
|
|
"@lerna-lite/version": "^3.2.1"
|
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 ",
|
2024-08-06 11:37:46 +08:00
|
|
|
"publish": "npm run prepublishOnly2 && lerna publish --conventional-commits --create-release github && npm run afterpublishOnly",
|
2024-07-26 23:36:33 +08:00
|
|
|
"afterpublishOnly": "time /t >build.trigger && git add ./build.trigger && git commit -m \"build: trigger build image\" && TIMEOUT /T 10 && git push",
|
2024-08-05 13:04:36 +08:00
|
|
|
"prepublishOnly1": "npm run check && lerna run build ",
|
|
|
|
|
"prepublishOnly2": "npm run check && npm run before-build && lerna run build ",
|
2024-07-26 23:13:50 +08:00
|
|
|
"before-build": "cd ./packages/core/pipeline && time /t >build.md && git add ./build.md && git commit -m \"build: prepare to build\"",
|
2024-07-15 00:30:33 +08:00
|
|
|
"deploy1": "node --experimental-json-modules deploy.js ",
|
2024-07-24 02:24:37 +08:00
|
|
|
"check": "node --experimental-json-modules publish-check.js",
|
2024-07-15 00:30:33 +08:00
|
|
|
"init": "lerna run build"
|
2021-02-05 17:07:49 +08:00
|
|
|
},
|
2024-02-27 21:35:22 +08:00
|
|
|
"license": "AGPL-3.0",
|
2020-12-26 01:37:53 +08:00
|
|
|
"dependencies": {
|
2024-07-15 00:30:33 +08:00
|
|
|
"axios": "^1.7.2",
|
2024-09-05 18:00:45 +08:00
|
|
|
"lodash-es": "^4.17.21"
|
2024-02-28 10:24:37 +08:00
|
|
|
},
|
|
|
|
|
"workspaces": [
|
|
|
|
|
"packages/**"
|
|
|
|
|
]
|
2024-09-05 18:00:45 +08:00
|
|
|
}
|