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": {
|
2025-02-17 23:56:50 +01:00
|
|
|
"@codemirror/lang-markdown": "^6.2.5",
|
|
|
|
"@codemirror/language": "^6.10.2",
|
|
|
|
"@codemirror/state": "^6.4.1",
|
|
|
|
"@codemirror/view": "^6.27.0",
|
|
|
|
"@lezer/highlight": "^1.2.0",
|
|
|
|
"@lezer/markdown": "^1.3.0",
|
2023-04-28 02:51:04 +02:00
|
|
|
"escape-string-regexp": "^5.0.0",
|
2025-02-17 23:56:50 +01:00
|
|
|
"marked": "^12.0.2"
|
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",
|
2025-02-17 23:56:50 +01:00
|
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
|
|
"@types/node": "^20.14.2",
|
2023-04-28 02:51:04 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.59.1",
|
2025-02-17 23:56:50 +01:00
|
|
|
"@vitest/coverage-v8": "^1.6.0",
|
|
|
|
"@vitest/ui": "^1.6.0",
|
2023-04-28 02:51:04 +02:00
|
|
|
"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",
|
2025-02-17 23:56:50 +01:00
|
|
|
"jsdom": "^24.1.0",
|
|
|
|
"prettier": "^3.3.1",
|
|
|
|
"rollup": "^4.18.0",
|
2023-04-28 02:51:04 +02:00
|
|
|
"rollup-plugin-cleaner": "^1.0.0",
|
|
|
|
"rollup-plugin-scss": "^4.0.0",
|
2025-02-17 23:56:50 +01:00
|
|
|
"sass": "^1.77.4",
|
|
|
|
"tslib": "^2.6.3",
|
|
|
|
"typescript": "^5.4.5",
|
|
|
|
"vitest": "^1.6.0"
|
2017-12-05 11:51:36 +01:00
|
|
|
}
|
2016-01-22 12:27:37 -06:00
|
|
|
}
|