-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1017 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1017 Bytes
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
{
"name": "markedit-theming",
"version": "0.16.0",
"description": "Create custom MarkEdit themes easily.",
"scripts": {
"lint": "eslint . --config eslint.config.mjs",
"build": "yarn lint && vite build && node build.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/commands": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/lang-markdown": "^6.0.0",
"@codemirror/search": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/highlight": "^1.0.0",
"@lezer/markdown": "^1.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^9.30.1",
"markedit-api": "https://github.com/MarkEdit-app/MarkEdit-api#v0.14.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"vite": "^7.0.0"
}
}