2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-10-10 22:42:09 -06:00
easy-markdown-editor/package.json

72 lines
2.5 KiB
JSON
Raw Normal View History

2015-08-11 16:34:14 +01:00
{
2018-04-23 15:18:49 +02:00
"name": "easymde",
2023-04-28 02:51:04 +02:00
"version": "3.0.0",
"type": "module",
2018-04-23 15:18:49 +02:00
"description": "A simple, beautiful, and embeddable JavaScript Markdown editor that easy to use. Features include autosaving and spell checking.",
2017-12-05 11:51:36 +01:00
"keywords": [
"embeddable",
"markdown",
"editor",
2023-04-28 02:51:04 +02:00
"javascript"
2017-12-05 11:51:36 +01:00
],
2023-04-28 02:51:04 +02:00
"main": "dist/node/easymde.js",
"browser": "dist/browser/easymde.min.js",
"types": "dist/types/index.d.ts",
2017-12-05 11:51:36 +01:00
"license": "MIT",
"author": "Jeroen Akkerman",
2023-04-28 02:51:04 +02:00
"repository": "github:Ionaru/easy-markdown-editor",
"scripts": {
"clean": "npx rimraf dist",
"prebuild": "npm run clean",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/types",
"postbuild": "npm run build:types",
"pretest": "npm run lint",
"test": "npm run test:unit",
"test:unit": "vitest run",
"test:e2e": "cypress run",
"lint": "prettier --check . && eslint .",
"format": "prettier --write . && eslint --fix ."
},
2017-12-05 11:51:36 +01:00
"dependencies": {
2023-04-28 02:51:04 +02:00
"@codemirror/lang-markdown": "^6.1.1",
"@codemirror/language": "^6.6.0",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.10.0",
"@lezer/highlight": "^1.1.4",
"@lezer/markdown": "^1.0.2",
"escape-string-regexp": "^5.0.0",
"marked": "^4.3.0"
2017-12-05 11:51:36 +01:00
},
"devDependencies": {
2023-04-28 02:51:04 +02:00
"@ionaru/eslint-config": "^9.2.1-53.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/marked": "^4.0.8",
"@types/node": "^18.16.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@vitest/coverage-c8": "^0.30.1",
2024-06-07 12:37:45 +02:00
"@vitest/coverage-v8": "^0.34.6",
2023-04-28 02:51:04 +02:00
"@vitest/ui": "^0.30.1",
"cypress": "^12.11.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^46.0.0",
"jsdom": "^21.1.1",
"prettier": "^2.8.8",
"rollup": "^3.21.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-scss": "^4.0.0",
"sass": "^1.62.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
2024-06-07 12:37:45 +02:00
"vitest": "^0.34.6"
2017-12-05 11:51:36 +01:00
}
2016-01-22 12:27:37 -06:00
}