mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 22:22:51 +00:00
58 lines
2.3 KiB
JSON
58 lines
2.3 KiB
JSON
{
|
|
"name": "@alilc/lowcode-monorepo",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"playground": "pnpm --filter playground dev",
|
|
"build": "node ./scripts/build.js",
|
|
"test": "vitest",
|
|
"clean": "rimraf ./packages/*/dist",
|
|
"clean:lib": "rimraf ./node_modules ./packages/*/node_modules",
|
|
"lint": "eslint . --cache",
|
|
"docs": "pnpm --filter @alilc/lowcode-engine-docs run start",
|
|
"pub": "npm run watchdog:build && lerna publish patch --yes --force-publish --exact --no-changelog",
|
|
"pub:minor": "npm run watchdog:build && lerna publish minor --yes --force-publish --exact --no-changelog",
|
|
"pub:major": "npm run watchdog:build && lerna publish major --yes --force-publish --exact --no-changelog",
|
|
"pub:premajor": "npm run watchdog:build && lerna publish premajor --force-publish --exact --dist-tag beta --preid beta --no-changelog",
|
|
"pub:preminor": "npm run watchdog:build && lerna publish preminor --force-publish --exact --dist-tag beta --preid beta --no-changelog",
|
|
"pub:prepatch": "npm run watchdog:build && lerna publish prepatch --force-publish --exact --dist-tag beta --preid beta --no-changelog",
|
|
"pub:prerelease": "npm run watchdog:build && lerna publish prerelease --yes --force-publish --exact --dist-tag beta --preid beta --no-changelog",
|
|
"syncOss": "node ./scripts/sync-oss.js",
|
|
"prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"@alilc/build-plugin-lce": "^0.0.5",
|
|
"@alilc/lowcode-test-mate": "^1.0.1",
|
|
"@changesets/cli": "^2.27.1",
|
|
"@commitlint/cli": "^19.2.1",
|
|
"@commitlint/config-conventional": "^19.1.0",
|
|
"@eslint/js": "^8.57.0",
|
|
"@microsoft/api-extractor": "^7.43.0",
|
|
"@stylistic/eslint-plugin": "^1.7.0",
|
|
"@types/node": "^20.11.30",
|
|
"@types/react-router": "5.1.18",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-react": "^7.34.1",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"globals": "^15.0.0",
|
|
"husky": "^9.0.11",
|
|
"less": "^4.2.0",
|
|
"lint-staged": "^15.2.2",
|
|
"rimraf": "^5.0.2",
|
|
"rollup": "^4.13.0",
|
|
"typescript": "^5.4.2",
|
|
"typescript-eslint": "^7.5.0",
|
|
"vite": "^5.1.6",
|
|
"vitest": "^1.3.1"
|
|
},
|
|
"engines": {
|
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0",
|
|
"pnpm": ">= 8"
|
|
},
|
|
"lint-staged": {
|
|
"*": "pnpm lint"
|
|
},
|
|
"repository": "git@github.com:alibaba/lowcode-engine.git"
|
|
}
|