-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.42 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
{
"name": "ledger-native",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"predev": "npm run prepare:public",
"build": "vite build",
"prebuild": "npm run prepare:public",
"build:web": "vite build --mode web",
"prebuild:web": "npm run prepare:public",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"test": "vitest run",
"test:watch": "vitest",
"gate": "npm run check && npm run test",
"prepare:public": "node scripts/prepare-public.mjs",
"prepare:www": "node scripts/prepare-www.mjs",
"cap:sync": "npm run prepare:www && cap sync",
"cap:sync:dist": "npm run build && cap sync",
"android": "npm run cap:sync && cap open android"
},
"devDependencies": {
"@capacitor/cli": "^8.4.2",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tsconfig/svelte": "^5.0.8",
"@types/node": "^24.13.2",
"jsdom": "^29.1.1",
"svelte": "^5.56.4",
"svelte-check": "^4.7.1",
"typescript": "~6.0.2",
"vite": "^8.1.1",
"vitest": "^4.1.10"
},
"dependencies": {
"@capacitor/android": "^8.4.2",
"@capacitor/app": "^8.1.1",
"@capacitor/core": "^8.4.2",
"@capacitor/status-bar": "^8.0.3",
"@fontsource/fraunces": "^5.3.0",
"@fontsource/hanken-grotesk": "^5.3.0",
"@fontsource/jetbrains-mono": "^5.3.0",
"phosphor-svelte": "^3.1.0"
}
}