113 lines
3.1 KiB
JSON
113 lines
3.1 KiB
JSON
{
|
|
"name": "@standardnotes/markdown-visual",
|
|
"version": "1.0.4",
|
|
"author": "Johnny Almonte <johnny@standardnotes.com>",
|
|
"description": "A lightweight WYSIWYG markdown editor for Standard Notes, derived from Milkdown.",
|
|
"keywords": [
|
|
"Standard Notes",
|
|
"Standard Notes Extensions"
|
|
],
|
|
"license": "AGPL-3.0-or-later",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/standardnotes/markdown-visual.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/standardnotes/markdown-visual/issues"
|
|
},
|
|
"sn": {
|
|
"main": "build/index.html"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"homepage": ".",
|
|
"scripts": {
|
|
"analyze": "source-map-explorer 'build/static/js/*.js'",
|
|
"start": "PORT=8001 react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject",
|
|
"pretty": "prettier --write 'src/**/*.{html,css,scss,js,jsx,ts,tsx,json}' README.md",
|
|
"prepare": "husky install",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@codemirror/lang-markdown": "^0.19.6",
|
|
"@milkdown/core": "^5.5.0",
|
|
"@milkdown/plugin-clipboard": "^5.5.0",
|
|
"@milkdown/plugin-cursor": "^5.5.0",
|
|
"@milkdown/plugin-diagram": "^5.5.0",
|
|
"@milkdown/plugin-history": "^5.5.0",
|
|
"@milkdown/plugin-indent": "^5.5.0",
|
|
"@milkdown/plugin-listener": "^5.5.0",
|
|
"@milkdown/plugin-math": "^5.5.0",
|
|
"@milkdown/plugin-menu": "^5.5.0",
|
|
"@milkdown/plugin-prism": "^5.5.0",
|
|
"@milkdown/plugin-slash": "^5.5.0",
|
|
"@milkdown/plugin-tooltip": "^5.5.0",
|
|
"@milkdown/preset-commonmark": "^5.5.0",
|
|
"@milkdown/preset-gfm": "^5.5.0",
|
|
"@milkdown/prose": "^5.5.0",
|
|
"@milkdown/react": "^5.5.0",
|
|
"@milkdown/theme-nord": "^5.5.0",
|
|
"@standardnotes/editor-kit": "2.2.4",
|
|
"@testing-library/dom": "^8.11.3",
|
|
"@testing-library/jest-dom": "^5.16.2",
|
|
"@testing-library/react": "^12.1.4",
|
|
"@testing-library/user-event": "^13.5.0",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/lodash": "^4.14.179",
|
|
"@types/marked": "^4.0.2",
|
|
"@types/node": "^17.0.21",
|
|
"@types/react": "^17.0.40",
|
|
"@types/react-dom": "^17.0.13",
|
|
"@uiw/react-codemirror": "^4.5.1",
|
|
"gh-pages": "^3.2.3",
|
|
"husky": "^7.0.4",
|
|
"katex": "^0.15.2",
|
|
"lint-staged": "^12.3.5",
|
|
"marked": "^4.0.12",
|
|
"material-icons": "^1.10.8",
|
|
"prettier": "^2.5.1",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-icons": "^4.3.1",
|
|
"react-scripts": "^5.0.0",
|
|
"sass": "1.49.9",
|
|
"sn-stylekit": "5.2.21",
|
|
"source-map-explorer": "^2.5.2",
|
|
"typescript": "4.6.2"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"lint-staged": {
|
|
"README.md": [
|
|
"prettier --write"
|
|
],
|
|
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"resolutions": {
|
|
"react-error-overlay": "^6.0.10"
|
|
}
|
|
}
|