mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
92 lines
3.1 KiB
JSON
92 lines
3.1 KiB
JSON
{
|
|
"version": "1.1.0-beta.5",
|
|
"name": "tmagic",
|
|
"private": true,
|
|
"packageManager": "pnpm@7.1.9",
|
|
"scripts": {
|
|
"bootstrap": "pnpm i && pnpm build",
|
|
"clean:top": "rimraf */**/dist */**/admin-dist */**/entry-dist */dist coverage dwt*",
|
|
"clean:modules": "rimraf node_modules **/node_modules **/**/node_modules",
|
|
"clean:all": "pnpm clean:top && pnpm clean:modules",
|
|
"lint": "eslint . --ext .js,.vue,.ts,.tsx",
|
|
"lint-fix": "eslint . --fix --ext .vue,.js,.ts,.tsx",
|
|
"playground": "pnpm --filter \"runtime-vue3\" --filter \"tmagic-playground\" dev",
|
|
"pg": "pnpm playground",
|
|
"playground:vue2": "pnpm --filter \"runtime-vue2\" --filter \"tmagic-playground\" dev:vue2",
|
|
"pg:vue2": "pnpm playground:vue2",
|
|
"playground:react": "pnpm --filter \"runtime-react\" --filter \"tmagic-playground\" dev:react",
|
|
"pg:react": "pnpm playground:react",
|
|
"build": "pnpm --filter \"@tmagic/*\" build",
|
|
"build:runtime:admin": "pnpm --filter \"runtime-*\" build:admin",
|
|
"build:playground": "pnpm --filter \"runtime-vue3\" --filter \"tmagic-playground\" build",
|
|
"postbuild:playground": "shx mkdir playground/dist/runtime && shx cp -r runtime/vue3/dist ./playground/dist/runtime/vue3 && cp -r runtime/vue3/entry-dist/* ./playground/dist/runtime/vue3",
|
|
"docs": "pnpm --filter \"docs\" dev",
|
|
"build:docs": "pnpm --filter \"docs\" build",
|
|
"reinstall": "pnpm clean:all && pnpm bootstrap",
|
|
"test": "vitest run",
|
|
"coverage": "vitest run --coverage",
|
|
"prepare": "husky install",
|
|
"commit": "git-cz",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
|
"release": "node scripts/release.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"workspaces": [
|
|
"packages/code-editor",
|
|
"packages/editor",
|
|
"packages/form",
|
|
"packages/stage",
|
|
"packages/utils"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Tencent/tmagic-editor.git"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.18.0",
|
|
"@commitlint/cli": "^16.2.3",
|
|
"@commitlint/config-conventional": "^16.2.1",
|
|
"@types/node": "^15.12.4",
|
|
"@typescript-eslint/eslint-plugin": "^4.28.0",
|
|
"@typescript-eslint/parser": "^4.28.0",
|
|
"@vitejs/plugin-vue": "^3.0.1",
|
|
"c8": "^7.11.3",
|
|
"chalk": "^4.1.0",
|
|
"commitizen": "^4.2.4",
|
|
"conventional-changelog-cli": "^2.2.2",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"enquirer": "^2.3.6",
|
|
"eslint": "^7.29.0",
|
|
"eslint-config-tencent": "^1.0.1",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
"eslint-plugin-vue": "^7.11.1",
|
|
"execa": "^4.0.2",
|
|
"husky": "^7.0.0",
|
|
"jsdom": "^19.0.0",
|
|
"lint-staged": "^11.0.1",
|
|
"minimist": "^1.2.6",
|
|
"prettier": "^2.3.1",
|
|
"recast": "^0.20.4",
|
|
"rimraf": "^3.0.2",
|
|
"semver": "^7.3.7",
|
|
"shx": "^0.3.4",
|
|
"typescript": "^4.7.4",
|
|
"vite": "^3.0.4",
|
|
"vitest": "^0.14.1",
|
|
"vue": "^3.2.37"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,vue}": "eslint --fix",
|
|
"*.scss": "prettier --write"
|
|
}
|
|
}
|