-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
52 lines (52 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@chatwoot/prosemirror-schema",
"version": "1.0.17",
"description": "Schema setup for using prosemirror in chatwoot. Based on 👉 https://github.com/ProseMirror/prosemirror-example-setup/",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"prepare": "husky install"
},
"repository": "git+https://github.com/chatwoot/prosemirror-schema.git",
"files": [
"src/*"
],
"author": "Nithin David <nithin@chatwoot.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chatwoot/prosemirror-schema/issues"
},
"homepage": "https://github.com/chatwoot/prosemirror-schema#readme",
"dependencies": {
"markdown-it-sup": "^1.0.0",
"prosemirror-commands": "^1.1.4",
"prosemirror-dropcursor": "^1.3.2",
"prosemirror-gapcursor": "^1.1.5",
"prosemirror-history": "^1.1.3",
"prosemirror-inputrules": "^1.1.3",
"prosemirror-keymap": "^1.1.4",
"prosemirror-markdown": "1.5.1",
"prosemirror-menu": "^1.1.4",
"prosemirror-model": "^1.1.0",
"prosemirror-schema-list": "^1.1.4",
"prosemirror-state": "^1.3.3",
"prosemirror-tables": "^1.3.0",
"prosemirror-utils": "^0.9.6",
"prosemirror-view": "^1.17.2"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@rollup/plugin-babel": "^6.0.3",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"rollup": "^3.29.2"
},
"lint-staged": {
"*.js": "eslint --fix"
}
}