2015-08-11 16:34:14 +01:00
|
|
|
{
|
2018-04-23 15:18:49 +02:00
|
|
|
"name": "easymde",
|
2025-05-01 17:56:45 +02:00
|
|
|
"version": "2.0.0",
|
2023-04-28 02:51:04 +02:00
|
|
|
"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
|
|
|
],
|
2025-05-01 18:28:20 +02:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"CHANGELOG.md"
|
|
|
|
],
|
|
|
|
"main": "dist/node/index.js",
|
2023-04-28 02:51:04 +02:00
|
|
|
"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",
|
2025-05-01 18:28:20 +02:00
|
|
|
"repository": {
|
|
|
|
"url": "git+https://github.com/Ionaru/easy-markdown-editor.git"
|
|
|
|
},
|
2023-04-28 02:51:04 +02:00
|
|
|
"scripts": {
|
|
|
|
"build": "rollup -c",
|
|
|
|
"build:watch": "rollup -c -w",
|
|
|
|
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/types",
|
|
|
|
"postbuild": "npm run build:types",
|
|
|
|
"test": "npm run test:unit",
|
|
|
|
"test:unit": "vitest run",
|
|
|
|
"test:e2e": "cypress run",
|
2025-05-01 17:35:53 +02:00
|
|
|
"check": "prettier --check . && eslint .",
|
2025-05-01 17:22:17 +02:00
|
|
|
"fix": "prettier --write . && eslint --fix ."
|
2023-04-28 02:51:04 +02:00
|
|
|
},
|
2017-12-05 11:51:36 +01:00
|
|
|
"dependencies": {
|
2025-05-01 17:22:17 +02:00
|
|
|
"@codemirror/lang-markdown": "^6.3.2",
|
|
|
|
"@codemirror/language": "^6.11.0",
|
|
|
|
"@codemirror/state": "^6.5.2",
|
|
|
|
"@codemirror/view": "^6.36.6",
|
|
|
|
"@lezer/highlight": "^1.2.1",
|
|
|
|
"@lezer/markdown": "^1.4.3",
|
2023-04-28 02:51:04 +02:00
|
|
|
"escape-string-regexp": "^5.0.0",
|
2025-05-01 17:22:17 +02:00
|
|
|
"marked": "^15.0.11"
|
2017-12-05 11:51:36 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2025-05-01 17:22:17 +02:00
|
|
|
"@eslint/js": "^9.25.1",
|
|
|
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
2025-02-17 23:56:50 +01:00
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
2025-05-01 17:44:31 +02:00
|
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
2025-05-01 17:22:17 +02:00
|
|
|
"@types/node": "^22.15.3",
|
|
|
|
"@vitest/coverage-v8": "^3.1.2",
|
|
|
|
"@vitest/ui": "^3.1.2",
|
|
|
|
"cypress": "^14.3.2",
|
|
|
|
"eslint": "^9.25.1",
|
|
|
|
"eslint-config-prettier": "^10.1.2",
|
|
|
|
"eslint-plugin-import": "^2.31.0",
|
|
|
|
"eslint-plugin-sonarjs": "^3.0.2",
|
|
|
|
"eslint-plugin-unicorn": "^59.0.0",
|
|
|
|
"jsdom": "^26.1.0",
|
|
|
|
"prettier": "^3.5.3",
|
|
|
|
"rollup": "^4.40.1",
|
2023-04-28 02:51:04 +02:00
|
|
|
"rollup-plugin-cleaner": "^1.0.0",
|
2025-05-01 17:44:31 +02:00
|
|
|
"rollup-plugin-scss": "^4.0.1",
|
|
|
|
"sass": "^1.87.0",
|
2025-05-01 17:22:17 +02:00
|
|
|
"tslib": "^2.8.1",
|
|
|
|
"typescript": "^5.8.3",
|
|
|
|
"typescript-eslint": "^8.31.1",
|
|
|
|
"vitest": "^3.1.2"
|
2017-12-05 11:51:36 +01:00
|
|
|
}
|
2016-01-22 12:27:37 -06:00
|
|
|
}
|