123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- {
- "name": "@milkdown/prose",
- "type": "module",
- "version": "7.3.5",
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/Milkdown/milkdown.git",
- "directory": "packages/prose"
- },
- "sideEffects": false,
- "exports": {
- ".": {
- "types": "./lib/index.d.ts",
- "import": "./lib/index.js"
- },
- "./commands": {
- "types": "./lib/commands.d.ts",
- "import": "./lib/commands.js"
- },
- "./dropcursor": {
- "types": "./lib/dropcursor.d.ts",
- "import": "./lib/dropcursor.js"
- },
- "./gapcursor": {
- "types": "./lib/gapcursor.d.ts",
- "import": "./lib/gapcursor.js"
- },
- "./history": {
- "types": "./lib/history.d.ts",
- "import": "./lib/history.js"
- },
- "./inputrules": {
- "types": "./lib/inputrules.d.ts",
- "import": "./lib/inputrules.js"
- },
- "./keymap": {
- "types": "./lib/keymap.d.ts",
- "import": "./lib/keymap.js"
- },
- "./model": {
- "types": "./lib/model.d.ts",
- "import": "./lib/model.js"
- },
- "./schema-list": {
- "types": "./lib/schema-list.d.ts",
- "import": "./lib/schema-list.js"
- },
- "./state": {
- "types": "./lib/state.d.ts",
- "import": "./lib/state.js"
- },
- "./transform": {
- "types": "./lib/transform.d.ts",
- "import": "./lib/transform.js"
- },
- "./view": {
- "types": "./lib/view.d.ts",
- "import": "./lib/view.js"
- },
- "./tables": {
- "types": "./lib/tables.d.ts",
- "import": "./lib/tables.js"
- },
- "./view/style/prosemirror.css": "./lib/style/prosemirror.css",
- "./tables/style/tables.css": "./lib/style/tables.css",
- "./gapcursor/style/gapcurosr.css": "./lib/style/gapcursor.css"
- },
- "main": "./lib/index.js",
- "files": [
- "lib",
- "src"
- ],
- "dependencies": {
- "prosemirror-changeset": "^2.2.1",
- "prosemirror-commands": "^1.5.2",
- "prosemirror-dropcursor": "^1.8.1",
- "prosemirror-gapcursor": "^1.3.2",
- "prosemirror-history": "^1.3.2",
- "prosemirror-inputrules": "^1.2.1",
- "prosemirror-keymap": "^1.2.2",
- "prosemirror-model": "^1.19.3",
- "prosemirror-schema-list": "^1.3.0",
- "prosemirror-state": "^1.4.3",
- "prosemirror-tables": "^1.3.4",
- "prosemirror-transform": "^1.7.5",
- "prosemirror-view": "^1.31.7",
- "tslib": "^2.5.0",
- "@milkdown/exception": "7.3.5"
- },
- "nx": {
- "targets": {
- "build": {
- "outputs": [
- "{projectRoot}/lib"
- ],
- "dependsOn": [
- {
- "target": "build",
- "projects": "dependencies"
- }
- ]
- },
- "tsc": {
- "outputs": [],
- "dependsOn": [
- {
- "target": "build",
- "projects": "dependencies"
- }
- ]
- }
- }
- },
- "scripts": {
- "start": "rollup -c -w",
- "test": "vitest",
- "tsc": "tsc --noEmit && echo",
- "build": "rollup -c && echo"
- },
- "types": "./lib/index.d.ts",
- "typesVersions": {
- "*": {
- "changeset": [
- "lib/changeset.d.ts"
- ],
- "commands": [
- "lib/commands.d.ts"
- ],
- "dropcursor": [
- "lib/dropcursor.d.ts"
- ],
- "gapcursor": [
- "lib/gapcursor.d.ts"
- ],
- "history": [
- "lib/history.d.ts"
- ],
- "inputrules": [
- "lib/inputrules.d.ts"
- ],
- "keymap": [
- "lib/keymap.d.ts"
- ],
- "model": [
- "lib/model.d.ts"
- ],
- "schema-list": [
- "lib/schema-list.d.ts"
- ],
- "state": [
- "lib/state.d.ts"
- ],
- "transform": [
- "lib/transform.d.ts"
- ],
- "view": [
- "lib/view.d.ts"
- ],
- "tables": [
- "lib/tables.d.ts"
- ]
- }
- }
- }
|