-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.14 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.14 KB
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
33
34
{
"name": "markedit-proofreading",
"version": "1.0.0",
"description": "MarkEdit grammar checker based on Harper.",
"scripts": {
"build": "yarn lint && yarn test && vite build",
"lint": "eslint .",
"test": "vitest run",
"reload": "osascript -e 'quit app \"MarkEdit\"' -e 'delay 1' -e 'launch app \"MarkEdit\"'",
"uninstall": "rm ~/Library/Containers/app.cyan.markedit/Data/Documents/scripts/$(node -p \"require('./package.json').name\").js"
},
"license": "MIT",
"devDependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@eslint/js": "^9.39.4",
"@lezer/markdown": "^1.0.0",
"@types/node": "^22.0.0",
"eslint": "^9.39.4",
"globals": "^17.4.0",
"markedit-api": "https://github.com/MarkEdit-app/MarkEdit-api#v0.21.0",
"markedit-vite": "https://github.com/MarkEdit-app/MarkEdit-vite#v0.4.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.57.0",
"vitest": "^3.2.4",
"vite": "^7.0.0",
"vite-plugin-singlefile": "^2.3.0"
},
"dependencies": {
"harper.js": "^1.9.0"
}
}