New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

prosemirror

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prosemirror - npm Package Compare versions

Comparing version 0.10.1 to 0.11.0

43

package.json
{
"name": "prosemirror",
"version": "0.10.1",
"description": "Well-defined WYSIWYG editor",
"main": "dist/edit/index.js",
"license": "MIT",
"maintainers": [
{
"name": "Marijn Haverbeke",
"email": "marijnh@gmail.com",
"web": "http://marijnhaverbeke.nl"
}
],
"repository": {
"type": "git",
"url": "git://github.com/prosemirror/prosemirror.git"
},
"dependencies": {
"browserkeymap": "^1.0.0",
"subscription": "^3.0.0",
"markdown-it": "^6.0.4"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"blint": "^0.5.0",
"jsdom": "^8.0.4",
"moduleserve": "^0.7.0",
"punycode": "^1.4.0",
"rimraf": "^2.5.0",
"source-map-support": "^0.2.10"
},
"scripts": {
"test": "node src/test/run.js",
"demo": "moduleserve demo",
"dist": "babel -d dist src",
"dist-watch": "babel -w -d dist src",
"lint": "blint --browser --ecmaVersion 6 --forbidSemicolons src || true",
"prepublish": "rimraf dist && babel -d dist src"
}
"version": "0.11.0",
"description": "The old, deprecated, monolithic prosemirror package",
"author": "Marijn Haverbeke <marijnh@gmail.com>",
"license": "MIT"
}

@@ -1,58 +0,8 @@

# ProseMirror
# This isn't ProseMirror
[![Join the chat at https://gitter.im/ProseMirror/prosemirror](https://badges.gitter.im/ProseMirror/prosemirror.svg)](https://gitter.im/ProseMirror/prosemirror?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
To use the ProseMirror library, please install modules like
`prosemirror-model`, `prosemirror-view`, and so on. This package name
was used in the past, when ProseMirror was a monolithic library, but
is currently not used for anything.
This is a well-behaved rich semantic content editor based on
contentEditable, with support for collaborative editing and
customizable document models.
The [project page](http://prosemirror.net) has a number of
[demos](http://prosemirror.net/#demos) and the
[documentation](http://prosemirror.net/docs.html).
**NOTE:** This project is in *BETA* stage. It isn't thoroughly tested,
and the API might still change across `0.x` releases. You are welcome
to use it, but don't expect it to be very stable yet.
This code is released under an
[MIT license](https://github.com/prosemirror/prosemirror/tree/master/LICENSE).
There's a [forum](http://discuss.prosemirror.net) for general
discussion and support requests, and the
[Github bug tracker](https://github.com/prosemirror/prosemirror/issues)
is the place to report issues.
Documentation can be found on [the
website](http://prosemirror.net/docs.html).
## Run the demo
Install [Node.js](http://nodejs.org).
Clone the
[git repository](https://github.com/ProseMirror/prosemirror/). (The
NPM package does not come with the demo files.)
Inside the project directory, install the project's node dependencies
```bash
npm install
```
Make sure you have an up-to-date `dist/` dir:
```bash
npm run dist
# or, to keep compiling as files are changed
npm run dist-watch
# or, to mount a virtual ES6-compiling filesystem
# (might not work on non-Linux OSs)
npm run distfs
```
Start the demo server (serves demo files, resolves modules):
```bash
npm run demo
```
Open `http://localhost:8080/` in your browser
See http://prosemirror.net/
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc