-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.76 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.76 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
{
"name": "user-wallet",
"private": true,
"version": "0.1.9",
"type": "module",
"scripts": {
"dev": "vite",
"dev-ui": "vite --config vite.config.dev-ui.ts",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint \"src/**/*.{ts,tsx}\" --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"{src,src-tauri}/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"{src,src-tauri}/**/*.{ts,tsx,js,jsx,json,md}\"",
"tauri": "tauri",
"toolbox-dev": "node scripts/setup-toolbox-link.js && npm run tauri dev",
"tauri-ui-dev": "tauri dev --config src-tauri/tauri.ui-dev.conf.json",
"release-version": "node update-version.js",
"release": "npm version patch --no-git-tag-version && node update-version.js $(node -p \"require('./package.json').version\") && git push --follow-tags",
"release:minor": "npm version minor --no-git-tag-version && node update-version.js $(node -p \"require('./package.json').version\") && git push --follow-tags",
"release:major": "npm version major --no-git-tag-version && node update-version.js $(node -p \"require('./package.json').version\") && git push --follow-tags",
"clean": "rm -rf node_modules dist src-tauri/target .vite .cache package-lock.json yarn.lock pnpm-lock.yaml && cd src-tauri && cargo clean || true"
},
"dependencies": {
"@bsv/message-box-client": "^2.0.4",
"@bsv/sdk": "^2.0.13",
"@bsv/uhrp-react": "^1.0.6",
"@bsv/wallet-toolbox-client": "^2.1.14",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^6.5.0",
"@mui/material": "^6.5.0",
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-updater": "^2.9.0",
"amountinator": "^0.2.12",
"date-fns": "^4.1.0",
"fuse.js": "^7.1.0",
"jdenticon": "^3.3.0",
"metanet-apps": "^1.0.9",
"qrcode.react": "^3.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"react-toastify": "^11.0.3",
"satoshi-shop-client": "^2.0.6",
"use-async-effect": "^2.2.7"
},
"devDependencies": {
"@tauri-apps/cli": "^2.9.2",
"@tauri-apps/plugin-opener": "^2.5.2",
"@types/node": "^22.13.1",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vite": "^6.4.1"
}
}