tiptap/demos/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

2021-08-25 17:52:20 +08:00
{
"name": "tiptap-demos",
2023-03-29 22:43:08 +08:00
"version": "2.0.0",
2021-08-25 17:52:20 +08:00
"private": true,
"scripts": {
2021-09-18 05:44:01 +08:00
"start": "vite --host",
"build:demos": "npm run ts && vite build",
"preview": "vite preview",
2021-09-18 05:44:01 +08:00
"ts": "tsc --project tsconfig.base.json --noEmit && tsc --project tsconfig.react.json --noEmit && tsc --project tsconfig.vue-2.json --noEmit && tsc --project tsconfig.vue-3.json --noEmit"
2021-08-25 17:52:20 +08:00
},
"dependencies": {
2023-03-28 16:39:21 +08:00
"@hocuspocus/provider": "^1.1.3",
2022-01-10 21:49:26 +08:00
"d3": "^7.3.0",
2022-01-25 17:22:56 +08:00
"fast-glob": "^3.2.11",
2022-09-02 01:44:45 +08:00
"highlight.js": "^11.6.0",
"lowlight": "^2.7.0",
2021-09-17 03:30:09 +08:00
"remixicon": "^2.5.0",
2022-01-04 17:02:24 +08:00
"shiki": "^0.10.0",
2021-09-17 03:30:09 +08:00
"simplify-js": "^1.2.4",
"y-prosemirror": "1.0.20",
2022-07-07 01:00:03 +08:00
"y-webrtc": "^10.2.3",
"yjs": "^13.5.39"
2021-08-25 17:52:20 +08:00
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.49",
2022-01-10 21:49:26 +08:00
"@types/uuid": "^8.3.4",
"@vitejs/plugin-react": "^1.3.1",
2021-12-09 04:34:25 +08:00
"@vitejs/plugin-vue": "^1.10.2",
2022-01-10 21:49:26 +08:00
"autoprefixer": "^10.4.2",
2021-09-19 04:59:00 +08:00
"iframe-resizer": "^4.3.2",
2022-02-04 17:21:35 +08:00
"postcss": "^8.4.6",
2022-04-04 15:46:11 +08:00
"react": "^18.0.0",
"react-dom": "^18.0.0",
2022-02-04 17:21:35 +08:00
"sass": "^1.49.7",
"svelte": "^3.49.0",
2021-11-05 18:52:49 +08:00
"tailwindcss": "^2.2.19",
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
"typescript": "4.7.4",
2021-09-19 04:59:00 +08:00
"uuid": "^8.3.2",
"vite": "^2.9.13",
2021-09-19 04:59:00 +08:00
"vite-plugin-checker": "^0.3.4",
"vue": "^3.0.5",
"vue-router": "^4.0.11"
2021-08-25 17:52:20 +08:00
}
}