Files
certd/package.json

52 lines
2.1 KiB
JSON
Raw Normal View History

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-10-09 02:34:28 +08:00
"@lerna-lite/cli": "^3.9.3",
"@lerna-lite/publish": "^3.9.3",
"@lerna-lite/run": "^3.9.3",
"@lerna-lite/version": "^3.9.3",
"medium-zoom": "^1.1.0",
2025-03-19 15:01:14 +08:00
"vitepress": "^2.0.0-alpha.4",
"vitepress-plugin-lightbox": "^1.0.2"
2020-12-13 23:06:17 +08:00
},
2021-02-05 17:07:49 +08:00
"scripts": {
"start": "lerna bootstrap --hoist",
2024-11-12 10:16:36 +08:00
"devb": "lerna run dev-build",
2023-05-24 17:49:39 +08:00
"i-all": "lerna link && lerna exec npm install ",
2024-09-30 11:00:41 +08:00
"publish": "npm run prepublishOnly2 && lerna publish --force-publish=pro/plus-core --conventional-commits --create-release github && npm run afterpublishOnly && npm run commitAll",
2024-11-04 22:38:58 +08:00
"afterpublishOnly": "npm run copylogs && time /t >build.trigger && git add ./build.trigger && git commit -m \"build: trigger build image\" && TIMEOUT /T 10 && git push",
"transform-sql": "cd ./packages/ui/certd-server/db/ && node --experimental-json-modules transform.js",
2024-10-09 02:34:28 +08:00
"commitAll": "git add . && git commit -m \"build: publish\" && git push && npm run commitPro",
2025-06-13 00:40:54 +08:00
"commitPro": "cd ./packages/pro/ && git add . && git commit -m \"build: publish\" && git push",
2024-11-14 00:42:40 +08:00
"copylogs": "copyfiles \"CHANGELOG.md\" ./docs/guide/changelogs/",
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-10-14 12:33:09 +08:00
"before-build": "npm run transform-sql && cd ./packages/core/basic && 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",
"init": "lerna run build",
2025-07-07 18:20:25 +08:00
"init:dev": "lerna run build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
2025-05-06 00:32:11 +08:00
"docs:preview": "vitepress preview docs",
"pub": "echo 1"
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": {
"@certd/ui-server": "link:packages/ui/certd-server",
2024-10-09 02:34:28 +08:00
"axios": "^1.7.7",
2024-11-08 23:57:03 +08:00
"copyfiles": "^2.4.1",
2024-11-07 00:17:35 +08:00
"lodash-es": "^4.17.21",
"typescript": "^5.4.2"
2024-02-28 10:24:37 +08:00
},
"workspaces": [
"packages/**"
2025-03-05 23:51:23 +08:00
],
"pnpm": {
"neverBuiltDependencies": []
}
2024-11-07 00:17:35 +08:00
}