mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 07:27:09 +08:00
99 lines
3.5 KiB
JSON
99 lines
3.5 KiB
JSON
{
|
|
"version": "1.4.19",
|
|
"name": "tmagic",
|
|
"private": true,
|
|
"type": "module",
|
|
"packageManager": "pnpm@9.6.0",
|
|
"scripts": {
|
|
"bootstrap": "pnpm i && pnpm build",
|
|
"clean:top": "rimraf */**/dist */**/types */dist coverage dwt* temp",
|
|
"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\" build:libs && pnpm --filter \"runtime-vue3\" --filter \"tmagic-playground\" dev",
|
|
"pg": "pnpm playground",
|
|
"playground:vue2": "pnpm --filter \"runtime-vue2\" build:libs && pnpm --filter \"runtime-vue2\" --filter \"tmagic-playground\" dev:vue2",
|
|
"pg:vue2": "pnpm playground:vue2",
|
|
"playground:react": "pnpm --filter \"runtime-react\" build:libs && pnpm --filter \"runtime-react\" --filter \"tmagic-playground\" dev:react",
|
|
"pg:react": "pnpm playground:react",
|
|
"build": "pnpm build:dst && pnpm --filter \"@tmagic/*\" build",
|
|
"build:dst": "pnpm --filter \"@tmagic/cli\" build && tsc -p tsconfig.build-browser.json && vue-tsc --declaration --emitDeclarationOnly --project tsconfig.build-vue.json && rollup -c rollup.dts.config.js && rimraf temp",
|
|
"check:type": "tsc --incremental --noEmit -p tsconfig.check.json",
|
|
"build:playground": "pnpm --filter \"runtime-vue3\" build && pnpm --filter \"tmagic-playground\" build",
|
|
"docs:dev": "vitepress dev docs",
|
|
"docs:serve": "vitepress serve docs",
|
|
"docs:build": "vitepress build docs",
|
|
"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.mjs"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Tencent/tmagic-editor.git"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^18.2.0",
|
|
"@commitlint/config-conventional": "^18.1.0",
|
|
"@rollup/plugin-alias": "^5.1.0",
|
|
"@types/node": "^18.19.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.57.1",
|
|
"@typescript-eslint/parser": "^5.57.1",
|
|
"@vitejs/plugin-vue": "^5.1.1",
|
|
"@vitest/coverage-v8": "^2.0.5",
|
|
"c8": "^7.11.3",
|
|
"commitizen": "^4.3.0",
|
|
"conventional-changelog-cli": "^4.1.0",
|
|
"cosmiconfig": "^8.3.6",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"element-plus": "^2.7.8",
|
|
"enquirer": "^2.3.6",
|
|
"eslint": "^8.38.0",
|
|
"eslint-config-tencent": "^1.0.4",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
"eslint-plugin-vue": "^9.10.0",
|
|
"execa": "^4.0.2",
|
|
"highlight.js": "^11.7.0",
|
|
"husky": "^7.0.0",
|
|
"jsdom": "^19.0.0",
|
|
"lint-staged": "^11.0.1",
|
|
"minimist": "^1.2.6",
|
|
"picocolors": "^1.0.0",
|
|
"prettier": "^2.8.7",
|
|
"recast": "^0.20.4",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^4.17.2",
|
|
"rollup-plugin-dts": "^6.1.1",
|
|
"semver": "^7.3.7",
|
|
"serialize-javascript": "^6.0.0",
|
|
"shx": "^0.3.4",
|
|
"typescript": "^5.4.5",
|
|
"vite": "^5.3.5",
|
|
"vitepress": "1.2.2",
|
|
"vitest": "^2.0.3",
|
|
"vue": "^3.4.35",
|
|
"vue-tsc": "^2.0.19"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,vue}": "eslint --fix",
|
|
"*.scss": "prettier --write"
|
|
}
|
|
}
|