-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.04 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.04 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "kasia",
"private": true,
"version": "0.6.3",
"type": "module",
"scripts": {
"dev": "node scripts/run-vite-with-env.cjs dev",
"build:production": "node scripts/run-vite-with-env.cjs build:production",
"build:staging": "node scripts/run-vite-with-env.cjs build:staging",
"generate:openapi": "openapi-ts -f src/service/indexer/generator.config.ts",
"lint": "eslint .",
"format": "prettier --check .",
"format:fix": "prettier --write ./src",
"format:check": "prettier --check ./src",
"type-check": "tsc --noEmit",
"preview": "vite preview",
"bump-tauri-version": "node scripts/bump-tauri-version.cjs",
"tauri": "npm run bump-tauri-version && tauri",
"wasm:build": "cd cipher && wasm-pack build --target web --release -d ../cipher-wasm && cd ..",
"submodule:init": "npm install --prefix vendors/tauri-plugin-biometry && npm run build --prefix vendors/tauri-plugin-biometry",
"prepare": "node .husky/install.mjs && npm run generate:openapi",
"test:browser": "vitest --config=vitest.browser.config.ts",
"test": "vitest --run"
},
"dependencies": {
"@headlessui/react": "2.2.1",
"@tailwindcss/vite": "4.1.3",
"@tauri-apps/api": "2.8.0",
"@tauri-apps/plugin-barcode-scanner": "2.4.0",
"@tauri-apps/plugin-biometry": "./vendors/tauri-plugin-biometry",
"@tauri-apps/plugin-clipboard-manager": "2.3.0",
"@tauri-apps/plugin-opener": "2.5.0",
"@tauri-apps/plugin-os": "2.3.1",
"cipher": "file:cipher-wasm",
"clsx": "2.1.1",
"eventemitter3": "5.0.1",
"idb": "8.0.3",
"jsqr": "1.4.0",
"kaspa-wasm": "file:wasm",
"lucide-react": "0.525.0",
"qrcode": "1.5.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-markdown": "10.1.0",
"react-router": "7.12.0",
"remark-breaks": "4.0.0",
"tauri-plugin-app-events-api": "0.2.0",
"uuid": "11.1.0",
"zustand": "5.0.5"
},
"devDependencies": {
"@eslint/js": "9.21.0",
"@hey-api/openapi-ts": "0.80.1",
"@tailwindcss/postcss": "^4.1.8",
"@tauri-apps/cli": "2.5.0",
"@types/node": "22.15.18",
"@types/qrcode": "1.5.5",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.4",
"@types/uuid": "10.0.0",
"@vitejs/plugin-react-swc": "4.1.0",
"@vitest/browser": "^3.2.4",
"autoprefixer": "^10.4.21",
"babel-plugin-react-compiler": "1.0.0",
"cssnano": "^7.0.7",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^6.0.0-rc.1",
"eslint-plugin-react-refresh": "0.4.19",
"globals": "^15.15.0",
"husky": "9.1.7",
"playwright": "^1.54.2",
"postcss": "^8.5.4",
"postcss-preset-env": "^10.2.1",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "^0.6.13",
"tailwindcss": "^4.1.8",
"typescript": "5.7.2",
"typescript-eslint": "8.24.1",
"vite": "^6.2.0",
"vite-plugin-pwa": "^1.0.1",
"vite-plugin-sri3": "1.0.6",
"vitest": "^3.2.4",
"vitest-browser-react": "^1.0.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.42.0",
"lightningcss-linux-x64-gnu": "1.30.1"
}
}