forked from sanity-io/sanity-plugin-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.42 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
53
54
55
56
57
58
59
60
{
"name": "sanity-plugin-markdown",
"version": "2.1.1",
"description": "Markdown fields in Sanity Studio. Supports Github flavored Markdown and image uploads.",
"scripts": {
"build": "sanipack build",
"watch": "sanipack build --watch",
"prepublishOnly": "sanipack build"
},
"keywords": [
"sanity",
"sanity-plugin",
"studio",
"markdown",
"github flavored markdown"
],
"author": "Sanity.io <hello@sanity.io>",
"license": "MIT",
"dependencies": {
"@reach/auto-id": "^0.13.2",
"react-markdown": "^5.0.3",
"react-mde": "^11.5.0",
"remark-gfm": "^1.0.0"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-sanity": "5.1.0",
"eslint-plugin-react": "^7.23.2",
"prettier": "^2.3.0",
"sanipack": "^2.0.1"
},
"peerDependencies": {
"@sanity/base": "^2.21.5",
"react": "^17.0.0"
},
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
},
"eslintConfig": {
"parser": "sanipack/babel/eslint-parser",
"extends": [
"sanity",
"sanity/react",
"prettier",
"prettier/react"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanity-io/sanity-plugin-markdown.git"
},
"bugs": {
"url": "https://github.com/sanity-io/sanity-plugin-markdown/issues"
},
"homepage": "https://sanity.io"
}