-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.5 KB
/
package.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "litepad",
"version": "0.0.1",
"private": true,
"type": "module",
"license": "MIT",
"author": {
"name": "fgt1t5y <https://github.com/fgt1t5y>"
},
"description": "A simple, local-save and rich-text notes app.",
"homepage": "https://github.com/fgt1t5y/LitePad",
"bugs": {
"url": "https://github.com/fgt1t5y/LitePad/issues"
},
"main": "http://localhost:5173",
"node-remote": "http://localhost:5173",
"window": {
"id": "litepad-gui",
"title": "LitePad",
"position": "center",
"height": 660,
"width": 1060,
"min_height": 600,
"min_width": 800,
"icon": "public/appicon.png",
"show": false
},
"scripts": {
"dev": "concurrently \"npm run dev:app\" \"npm run dev:nw\"",
"dev:app": "vite",
"dev:nw": ".\\cache\\nwjs-sdk-v0.91.0-win-x64\\nw.exe .",
"build": "npm run build:app && npm run build:nw",
"build:app": "run-p type-check \"build-only {@}\" --",
"build:nw": "node ./scripts/build.js",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force"
},
"dependencies": {
"@primevue/themes": "^4.0.7",
"@vueuse/core": "^11.1.0",
"debounce": "^2.1.1",
"dexie": "^4.0.8",
"md5": "^2.3.0",
"nanoid": "^5.0.7",
"performant-array-to-tree": "^1.11.0",
"pinia": "^2.2.2",
"primeicons": "^7.0.0",
"primevue": "^4.0.7",
"prosemirror-commands": "^1.6.0",
"prosemirror-dropcursor": "^1.8.1",
"prosemirror-gapcursor": "^1.3.2",
"prosemirror-history": "^1.4.1",
"prosemirror-keymap": "^1.2.2",
"prosemirror-model": "^1.22.3",
"prosemirror-state": "^1.4.3",
"prosemirror-transform": "^1.10.0",
"prosemirror-view": "^1.34.2",
"vue": "^3.5.6",
"vue-router": "^4.4.5",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@primevue/auto-import-resolver": "^4.0.7",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/md5": "^2.3.5",
"@types/node": "^20.16.5",
"@types/nw.js": "^0.13.21",
"@vitejs/plugin-vue": "^5.1.3",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"base-volta-off-of-nwjs": "^1.0.5",
"browserslist": "^4.23.3",
"concurrently": "^8.2.2",
"jsdom": "^24.1.3",
"lightningcss": "^1.27.0",
"npm-run-all2": "^6.2.3",
"nw": "^0.89.0",
"nw-builder": "^4.11.6",
"typescript": "~5.4.5",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.6",
"vitest": "^1.6.0",
"vue-tsc": "^2.1.6"
}
}