-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.32 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.32 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
74
75
{
"name": "ai-beta-reader-frontend",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || ^22.12.0"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"copy:wasm": "cp node_modules/sql.js/dist/sql-wasm.wasm public/",
"postinstall": "npm run copy:wasm && npm run build && npx cap sync android @capacitor-community/electron",
"electron:dev": "npm run build && cd electron && npm run electron:start-live",
"electron:build": "cd electron && npm run electron:make"
},
"dependencies": {
"@capacitor-community/sqlite": "^7.0.1",
"@capacitor/android": "^7.4.4",
"@capacitor/app": "^7.1.0",
"@capacitor/app-launcher": "^7.0.2",
"@capacitor/browser": "^7.0.2",
"@capacitor/cli": "^7.4.3",
"@capacitor/clipboard": "^7.0.2",
"@capacitor/core": "^7.4.3",
"@capacitor/filesystem": "^7.1.4",
"@capacitor/preferences": "^7.0.2",
"@capacitor/status-bar": "^7.0.3",
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.2.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/vue-query": "^5.90.2",
"@types/crypto-js": "^4.2.2",
"@types/jszip": "^3.4.0",
"axios": "^1.12.2",
"crypto-js": "^4.2.0",
"fflate": "^0.8.2",
"highlight.js": "^11.11.1",
"identicon.js": "^2.3.3",
"jszip": "^3.10.1",
"markdown-it": "^14.1.0",
"openai": "^6.1.0",
"pinia": "^3.0.3",
"sql.js": "^1.13.0",
"tailwindcss": "^3.4.17",
"vue": "^3.5.18",
"vue-router": "^4.5.1",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@capacitor-community/electron": "^5.0.1",
"@tsconfig/node22": "^22.0.2",
"@types/identicon.js": "^2.3.5",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.16.5",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.31.0",
"eslint-plugin-vue": "~10.3.0",
"jiti": "^2.4.2",
"npm-run-all2": "^8.0.4",
"postcss": "^8.5.6",
"typescript": "~5.8.0",
"vite": "^7.0.6",
"vite-plugin-vue-devtools": "^8.0.0",
"vue-tsc": "^3.0.4"
}
}