mirror of
https://github.com/ueberdosis/tiptap.git
synced 2026-09-14 16:14:40 +08:00
1d205165bd
* chore!: remove deprecated package aliases Remove the legacy package workspace and all build, alias, release, and test references before v4. BREAKING CHANGE: v4 no longer publishes the deprecated package aliases from packages-deprecated. * update changeset * chore: change changeset bump type * fix: fix README link * chore: update changeset
91 lines
3.3 KiB
JSON
91 lines
3.3 KiB
JSON
{
|
|
"name": "tiptap",
|
|
"private": true,
|
|
"publishConfig": {
|
|
"provenance": true
|
|
},
|
|
"scripts": {
|
|
"cz": "cz",
|
|
"start": "vp run --filter ./demos start",
|
|
"dev": "vp run start",
|
|
"check": "vp check",
|
|
"check:fix": "vp check --fix",
|
|
"format": "vp fmt --check",
|
|
"format:fix": "vp fmt",
|
|
"lint": "vp lint",
|
|
"lint:fix": "vp lint --fix",
|
|
"lint:staged": "vp staged",
|
|
"fallow": "fallow",
|
|
"fallow:audit": "fallow audit",
|
|
"fallow:health": "fallow health --score --targets",
|
|
"test:unit": "vp test",
|
|
"test:unit:dev": "vp test --watch",
|
|
"test:e2e": "playwright test --project=chromium",
|
|
"test:e2e:firefox": "playwright test --project=firefox",
|
|
"test:e2e:all": "playwright test",
|
|
"test:e2e:open": "playwright test --ui --project=chromium",
|
|
"test:e2e:open:firefox": "playwright test --ui --project=firefox",
|
|
"test:e2e:open:all": "playwright test --ui",
|
|
"test:e2e:report": "playwright show-report",
|
|
"test:publish-config": "node --test .github/scripts/__tests__/*.test.mjs",
|
|
"check:package-exports": "node scripts/check-package-exports.mjs",
|
|
"test": "vp run -r build && vp run test:unit",
|
|
"build": "vp run -r build",
|
|
"build:demos": "vp run --filter ./demos --fail-if-no-match build:demos",
|
|
"serve": "vp run build:demos && http-server ./demos/dist -s -p 3000",
|
|
"build:ci": "vp run -r build",
|
|
"publish": "vp run build && vp exec changeset publish",
|
|
"clean:packages": "rm -rf ./packages/*/dist && rm -rf ./packages/pm/*/dist",
|
|
"clean:packs": "rm -rf ./packages/*/*.tgz",
|
|
"make:demo": "sh ./scripts/make-demo.sh",
|
|
"reset": "vp run clean:packages && vp run clean:packs && rm -rf ./**/.cache && rm -rf ./**/node_modules && rm -rf ./package-lock.json && vp install",
|
|
"prepare": "vp config --no-agent",
|
|
"changeset": "changeset",
|
|
"changelog": "node ./scripts/aggregate-changeset.js",
|
|
"version": "vp run changelog && vp run changeset -- version && vp install --no-frozen-lockfile",
|
|
"publish:markdown": "vp run build && vp exec changeset publish --tag markdown",
|
|
"version:markdown": "vp run changeset version --snapshot markdown"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.29.6",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
|
|
"@babel/preset-env": "^7.26.0",
|
|
"@babel/preset-react": "^7.26.3",
|
|
"@changesets/changelog-github": "^0.6.0",
|
|
"@changesets/cli": "^2.27.11",
|
|
"@changesets/get-release-plan": "^4.0.13",
|
|
"@commitlint/cli": "^19.6.1",
|
|
"@commitlint/config-conventional": "^19.6.0",
|
|
"@playwright/test": "^1.54.2",
|
|
"@testing-library/react": "16.2.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"babel-loader": "^9.2.1",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"fallow": "^2.98.0",
|
|
"fast-glob": "^3.3.2",
|
|
"happy-dom": "^20.8.9",
|
|
"http-server": "14.1.1",
|
|
"lowlight": "^3.3.0",
|
|
"minimist": "^1.2.8",
|
|
"pkg-pr-new": "0.0.66",
|
|
"react": "^19.0.0",
|
|
"tinyglobby": "0.2.10",
|
|
"ts-loader": "9.3.1",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^5.7.3",
|
|
"vite": "catalog:",
|
|
"vite-plus": "catalog:",
|
|
"webpack": "^5.97.1"
|
|
},
|
|
"browserslist": [
|
|
"defaults",
|
|
"not IE 11"
|
|
],
|
|
"engines": {
|
|
"node": ">=24"
|
|
},
|
|
"packageManager": "pnpm@11.2.2"
|
|
}
|