tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

package.json (952B)


      1 {
      2  "name": "prosemirror-commands",
      3  "version": "1.7.1",
      4  "description": "Editing commands for ProseMirror",
      5  "type": "module",
      6  "main": "dist/index.cjs",
      7  "module": "dist/index.js",
      8  "types": "dist/index.d.ts",
      9  "exports": {
     10    "import": "./dist/index.js",
     11    "require": "./dist/index.cjs"
     12  },
     13  "sideEffects": false,
     14  "license": "MIT",
     15  "maintainers": [
     16    {
     17      "name": "Marijn Haverbeke",
     18      "email": "marijn@haverbeke.berlin",
     19      "web": "http://marijnhaverbeke.nl"
     20    }
     21  ],
     22  "repository": {
     23    "type": "git",
     24    "url": "git://github.com/prosemirror/prosemirror-commands.git"
     25  },
     26  "dependencies": {
     27    "prosemirror-model": "^1.0.0",
     28    "prosemirror-transform": "^1.10.2",
     29    "prosemirror-state": "^1.0.0"
     30  },
     31  "devDependencies": {
     32    "@prosemirror/buildhelper": "^0.1.5",
     33    "prosemirror-test-builder": "^1.0.0"
     34  },
     35  "scripts": {
     36    "test": "pm-runtests",
     37    "prepare": "pm-buildhelper src/commands.ts"
     38  }
     39 }