-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.33 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.33 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "blank",
"private": true,
"version": "1.2.0",
"type": "module",
"description": "Blank is a minimalist, opinionated markdown editor made for writing - purely keyboard-based with PDF-Export, available for Linux, macOS and Windows",
"license": "MIT",
"maintainers": [
{
"name": "Florian Purchess",
"email": "florian.purchess@googlemail.com",
"web": "https://florian-purchess.de/"
}
],
"repository": {
"type": "git",
"url": "git://github.com/FPurchess/blank.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint src/**/*.ts && tsc",
"lint:fix": "eslint --fix src/**/*.ts && tsc",
"format": "prettier --write --end-of-line=auto \"./**/*.{cjs,js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore --ignore-path .prettierignore",
"format:check": "prettier --check --end-of-line=auto \"./**/*.{cjs,js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore --ignore-path .prettierignore",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"resolutions": {
"w3c-keyname": "^2.2.5"
},
"dependencies": {
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-cli": "~2",
"@tauri-apps/plugin-dialog": "~2.2.0",
"@tauri-apps/plugin-fs": "~2.2.0",
"@tauri-apps/plugin-notification": "~2.2.0",
"@tauri-apps/plugin-opener": "^2.2.2",
"localforage": "^1.10.0",
"markdown-it": "^13.0.2",
"observable.ts": "^1.0.1",
"pdfmake": "0.3.0-beta.2",
"prosemirror-commands": "^1.6.2",
"prosemirror-history": "^1.4.1",
"prosemirror-keymap": "^1.2.2",
"prosemirror-markdown": "^1.13.1",
"prosemirror-schema-basic": "^1.2.3",
"prosemirror-schema-list": "^1.5.0",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.37.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tauri-apps/cli": "^2.1.0",
"@types/pdfmake": "^0.2.10",
"@vitest/coverage-v8": "2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"prettier": "3.4.2",
"sass-embedded": "^1.83.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.6",
"vitest": "^2.1.8"
}
}