tiptap/package.json

84 lines
3.6 KiB
JSON
Raw Normal View History

2019-12-08 04:02:22 +08:00
{
"private": true,
"workspaces": [
2021-08-25 17:52:20 +08:00
"demos",
2019-12-08 04:02:22 +08:00
"packages/*"
],
2020-08-21 05:25:55 +08:00
"browserslist": [
2021-05-04 16:15:51 +08:00
"defaults",
2021-09-18 06:15:24 +08:00
"not IE 11"
2020-08-21 05:25:55 +08:00
],
2019-12-08 04:02:22 +08:00
"scripts": {
"start": "npm --prefix ./demos run start",
2023-06-21 07:18:29 +08:00
"dev": "npm run start",
2023-02-19 01:27:02 +08:00
"lint": "eslint --cache --quiet --no-error-on-unmatched-pattern ./",
"lint:fix": "eslint --fix --cache --quiet --no-error-on-unmatched-pattern ./",
2022-07-06 18:59:02 +08:00
"lint:staged": "lint-staged",
2024-01-03 17:38:27 +08:00
"test:open": "cypress open --project tests",
"test:run": "cypress run --project tests",
"test": "npm run build:pm && npm run test:run",
"build": "lerna run build",
feat(pm): new prosemirror package for dependency resolving * chore:(core): migrate to tsup * chore: migrate blockquote and bold to tsup * chore: migrated bubble-menu and bullet-list to tsup * chore: migrated more packages to tsup * chore: migrate code and character extensions to tsup * chore: update package.json to simplify build for all packages * chore: move all packages to tsup as a build process * chore: change ci build task * feat(pm): add prosemirror meta package * rfix: resolve issues with build paths & export mappings * docs: update documentation to include notes for @tiptap/pm * chore(pm): update tsconfig * chore(packages): update packages * fix(pm): add package export infos & fix dependencies * chore(general): start moving to pm package as deps * chore: move to tiptap pm package internally * fix(demos): fix demos working with new pm package * fix(tables): fix tables package * fix(tables): fix tables package * chore(demos): pinned typescript version * chore: remove unnecessary tsconfig * chore: fix netlify build * fix(demos): fix package resolving for pm packages * fix(tests): fix package resolving for pm packages * fix(tests): fix package resolving for pm packages * chore(tests): fix tests not running correctly after pm package * chore(pm): add files to files array * chore: update build workflow * chore(tests): increase timeout time back to 12s * chore(docs): update docs * chore(docs): update installation guides & pm information to docs * chore(docs): add link to prosemirror docs * fix(vue-3): add missing build step * chore(docs): comment out cdn link * chore(docs): remove semicolons from docs * chore(docs): remove unnecessary installation note * chore(docs): remove unnecessary installation note
2023-02-03 00:37:33 +08:00
"build:pm": "npm --prefix ./packages/pm run build",
"build:demos": "npm --prefix ./demos run build:demos",
"build:ci": "npm run build",
"release": "lerna version --no-push --force-publish",
"release:major": "lerna version major --no-push --no-git-tag-version --force-publish",
2024-02-12 18:51:48 +08:00
"release:major:pre": "lerna version premajor --no-push --no-git-tag-version --force-publish --preid beta --no-changelog",
"release:minor": "lerna version minor --no-push --no-git-tag-version --force-publish",
2024-02-12 18:51:48 +08:00
"release:minor:pre": "lerna version preminor --no-push --no-git-tag-version --force-publish --preid beta --no-changelog",
"release:patch": "lerna version patch --no-push --no-git-tag-version --force-publish",
2024-02-12 18:51:48 +08:00
"release:patch:pre": "lerna version prepatch --no-push --no-git-tag-version --force-publish --preid beta --no-changelog",
"release:pre": "lerna version prerelease --no-push --no-git-tag-version --force-publish --preid beta --no-changelog",
"publish": "npm run build && lerna exec --since --no-private -- npm publish --tag latest --access public",
"publish:pre": "npm run build && lerna exec --since --no-private -- npm publish --tag next --access public",
feat(pm): new prosemirror package for dependency resolving * chore:(core): migrate to tsup * chore: migrate blockquote and bold to tsup * chore: migrated bubble-menu and bullet-list to tsup * chore: migrated more packages to tsup * chore: migrate code and character extensions to tsup * chore: update package.json to simplify build for all packages * chore: move all packages to tsup as a build process * chore: change ci build task * feat(pm): add prosemirror meta package * rfix: resolve issues with build paths & export mappings * docs: update documentation to include notes for @tiptap/pm * chore(pm): update tsconfig * chore(packages): update packages * fix(pm): add package export infos & fix dependencies * chore(general): start moving to pm package as deps * chore: move to tiptap pm package internally * fix(demos): fix demos working with new pm package * fix(tables): fix tables package * fix(tables): fix tables package * chore(demos): pinned typescript version * chore: remove unnecessary tsconfig * chore: fix netlify build * fix(demos): fix package resolving for pm packages * fix(tests): fix package resolving for pm packages * fix(tests): fix package resolving for pm packages * chore(tests): fix tests not running correctly after pm package * chore(pm): add files to files array * chore: update build workflow * chore(tests): increase timeout time back to 12s * chore(docs): update docs * chore(docs): update installation guides & pm information to docs * chore(docs): add link to prosemirror docs * fix(vue-3): add missing build step * chore(docs): comment out cdn link * chore(docs): remove semicolons from docs * chore(docs): remove unnecessary installation note * chore(docs): remove unnecessary installation note
2023-02-03 00:37:33 +08:00
"pack": "npm run clean:packs && lerna exec -- npm pack",
"clean:packages": "rm -rf ./packages/*/dist && rm -rf ./packages/pm/*/dist",
"clean:packs": "rm -rf ./packages/*/*.tgz",
"reset": "npm run clean:packages && npm run clean:packs && rm -rf ./**/.cache && rm -rf ./**/node_modules && rm -rf ./package-lock.json && npm install",
"prepare": "husky install"
2019-12-08 04:02:22 +08:00
},
2020-04-17 18:51:49 +08:00
"devDependencies": {
"@atomico/rollup-plugin-sizes": "^1.1.4",
2022-02-04 17:21:35 +08:00
"@babel/core": "^7.17.0",
2022-01-04 17:02:24 +08:00
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
2022-01-25 17:22:56 +08:00
"@babel/preset-env": "^7.16.11",
2022-01-04 17:02:24 +08:00
"@babel/preset-react": "^7.16.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
2022-01-04 17:02:24 +08:00
"@cypress/webpack-preprocessor": "^5.11.0",
2020-11-07 06:55:30 +08:00
"@lerna/batch-packages": "^3.16.0",
"@lerna/filter-packages": "^5.6.2",
"@lerna/project": "^5.6.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
2022-02-04 17:21:35 +08:00
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
2021-10-25 15:51:33 +08:00
"babel-loader": "^8.2.3",
"cypress": "^10.8.0",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
2021-09-15 03:46:02 +08:00
"eslint-plugin-cypress": "^2.12.1",
2021-09-22 02:30:23 +08:00
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-vue": "^9.1.0",
"husky": "^8.0.1",
"lerna": "^6.6.1",
2022-07-06 18:59:02 +08:00
"lint-staged": "^13.0.3",
"minimist": "^1.2.7",
"rollup": "^2.67.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.31.2",
feat(pm): new prosemirror package for dependency resolving * chore:(core): migrate to tsup * chore: migrate blockquote and bold to tsup * chore: migrated bubble-menu and bullet-list to tsup * chore: migrated more packages to tsup * chore: migrate code and character extensions to tsup * chore: update package.json to simplify build for all packages * chore: move all packages to tsup as a build process * chore: change ci build task * feat(pm): add prosemirror meta package * rfix: resolve issues with build paths & export mappings * docs: update documentation to include notes for @tiptap/pm * chore(pm): update tsconfig * chore(packages): update packages * fix(pm): add package export infos & fix dependencies * chore(general): start moving to pm package as deps * chore: move to tiptap pm package internally * fix(demos): fix demos working with new pm package * fix(tables): fix tables package * fix(tables): fix tables package * chore(demos): pinned typescript version * chore: remove unnecessary tsconfig * chore: fix netlify build * fix(demos): fix package resolving for pm packages * fix(tests): fix package resolving for pm packages * fix(tests): fix package resolving for pm packages * chore(tests): fix tests not running correctly after pm package * chore(pm): add files to files array * chore: update build workflow * chore(tests): increase timeout time back to 12s * chore(docs): update docs * chore(docs): update installation guides & pm information to docs * chore(docs): add link to prosemirror docs * fix(vue-3): add missing build step * chore(docs): comment out cdn link * chore(docs): remove semicolons from docs * chore(docs): remove unnecessary installation note * chore(docs): remove unnecessary installation note
2023-02-03 00:37:33 +08:00
"ts-loader": "9.3.1",
"tsup": "^6.5.0",
"typescript": "^4.5.5",
2022-02-04 17:21:35 +08:00
"webpack": "^5.68.0"
},
"name": "tiptap"
2023-03-29 23:39:20 +08:00
}