You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
934 B
40 lines
934 B
{
|
|
"name": "prosemirror-history",
|
|
"version": "1.3.0",
|
|
"description": "Undo history for ProseMirror",
|
|
"type": "module",
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"sideEffects": false,
|
|
"license": "MIT",
|
|
"maintainers": [
|
|
{
|
|
"name": "Marijn Haverbeke",
|
|
"email": "marijnh@gmail.com",
|
|
"web": "http://marijnhaverbeke.nl"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/prosemirror/prosemirror-history.git"
|
|
},
|
|
"dependencies": {
|
|
"prosemirror-state": "^1.2.2",
|
|
"prosemirror-transform": "^1.0.0",
|
|
"rope-sequence": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@prosemirror/buildhelper": "^0.1.5",
|
|
"prosemirror-test-builder": "^1.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "pm-runtests",
|
|
"prepare": "pm-buildhelper src/history.ts"
|
|
}
|
|
}
|