-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 885 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 885 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
33
34
35
{
"name": "bible-viewer",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "vite preview",
"format": "prettier src --write",
"tauri": "tauri",
"tdev": "tauri dev"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta3",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-opener": "^2",
"bible-passage-reference-parser": "^3.0.0",
"hotkeys-js": "^3.13.9",
"nuxt": "^3",
"papaparse": "^5.5.2",
"usfm-js": "^3.4.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@tauri-apps/cli": "^2",
"@types/papaparse": "^5.3.15",
"daisyui": "^5.0.0-beta.2",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.0"
}
}