forked from MultiMote/niimblue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "niimblue",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {
"dev-check": "npm run sv-check && npm run dev",
"dev-check-open": "npm run sv-check && npm run dev-open",
"dev": "vite --force",
"dev-open": "vite --force --open",
"build": "vite build",
"build-rel": "vite build --base=./",
"preview": "vite preview",
"sv-check": "svelte-check --tsconfig ./tsconfig.json",
"gen-mdi-list": "node gen-mdi-list.mjs > src/mdi_icons.ts",
"lint": "eslint ."
},
"dependencies": {
"@capacitor/core": "^7.2.0",
"@capacitor/filesystem": "^7.0.1",
"@capacitor/share": "^7.0.1",
"@fontsource-variable/noto-sans": "^5.0.5",
"@mmote/niimbluelib": "0.0.1-alpha.26",
"@popperjs/core": "^2.11.8",
"bootstrap": "5.3.3",
"d3-dsv": "^3.0.1",
"dayjs": "^1.11.13",
"fabric": "^6.5.1",
"material-icons": "^1.13.12",
"qrcode-svg": "^1.1.0",
"toastify-js": "^1.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tsconfig/svelte": "^5.0.4",
"@types/bootstrap": "^5.2.10",
"@types/d3-dsv": "^3.0.7",
"@types/node": "^20.14.8",
"@types/qrcode-svg": "^1.1.5",
"@types/toastify-js": "^1.12.3",
"sass": "1.77.6",
"svelte": "^4.2.19",
"svelte-check": "^3.8.4",
"tslib": "^2.6.3",
"typescript": "^5.2.2",
"vite": "^5.4.19"
},
"overrides": {
"fabric": {
"canvas": "npm:uninstall"
},
"vite": {
"esbuild": "0.25.0"
}
}
}