-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 6.46 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 6.46 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@hashgraphonline/desktop-tauri",
"version": "0.0.1",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"postinstall": "node scripts/patch-noble-curves.cjs",
"setup:legal": "node -e \"(() => { const fs = require('node:fs'); const path = require('node:path'); const root = process.cwd(); const ensureDir = (file) => { const dir = path.dirname(file); if (!fs.existsSync(dir)) { fs.mkdirSync(dir, { recursive: true }); } }; const relativeTarget = (target) => { const rel = path.relative(root, target); return rel && rel.length > 0 ? rel : target; }; const writeContent = (target, content) => { ensureDir(target); fs.writeFileSync(target, content, 'utf8'); }; const writeFromEnv = (envName, target) => { const value = process.env[envName]; if (!value || value.trim().length === 0) { return false; } writeContent(target, value); console.log('✅ ' + envName + ' wrote to ' + relativeTarget(target)); return true; }; const copyFromPath = (envName, target) => { const value = process.env[envName]; if (!value || value.trim().length === 0) { return false; } const resolved = path.isAbsolute(value) ? value : path.join(root, value); if (!fs.existsSync(resolved)) { console.error('❌ ' + envName + ' source not found: ' + resolved); process.exitCode = 1; return true; } const content = fs.readFileSync(resolved, 'utf8'); writeContent(target, content); console.log('✅ ' + envName + ' copied to ' + relativeTarget(target)); return true; }; [ { raw: 'TERMS_MARKDOWN', pathEnv: 'TERMS_MARKDOWN_PATH', target: path.join(root, 'public', 'terms.md') }, { raw: 'PRIVACY_MARKDOWN', pathEnv: 'PRIVACY_MARKDOWN_PATH', target: path.join(root, 'public', 'privacy.md') } ].forEach((entry) => { if (writeFromEnv(entry.raw, entry.target)) { return; } if (copyFromPath(entry.pathEnv, entry.target)) { return; } console.log('ℹ️ ' + entry.raw + '/' + entry.pathEnv + ' not provided; keeping ' + relativeTarget(entry.target)); }); })();\"",
"setup": "pnpm run setup:legal",
"dev": "pnpm run tauri:dev",
"dev:renderer": "pnpm run build:bridge && concurrently \"pnpm run bridge:watch\" \"node --max-old-space-size=16384 ./node_modules/vite/bin/vite.js dev\"",
"start": "pnpm run dev",
"build:agent": "tsc -p src-tauri/tsconfig.bridge.json",
"build:bridge": "pnpm run build:agent && vite build -c src-tauri/vite.config.bridge.ts",
"build": "tsx scripts/build-all.ts",
"preview": "vite preview",
"bridge:watch": "vite build -c src-tauri/vite.config.bridge.ts --watch",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"tauri:dev": "tauri dev",
"tauri:build": "pnpm run build:bridge && tauri build",
"tauri:test": "pnpm run build:bridge && pnpm test"
},
"dependencies": {
"@hashgraph/sdk": "2.77.0",
"@hashgraphonline/conversational-agent": "0.2.218",
"@hashgraphonline/hashinal-wc": "2.0.35",
"@hashgraphonline/standards-agent-kit": "0.2.164",
"@hashgraphonline/standards-sdk": "0.1.145",
"@hookform/resolvers": "^5.2.1",
"@kabuto-sh/ns": "^0.14.2",
"@kiloscribe/inscription-sdk": "2.0.8",
"@langchain/anthropic": "^0.3.27",
"@modelcontextprotocol/sdk": "^1.18.1",
"@monaco-editor/react": "^4.7.0",
"@noble/curves": "1.8.1",
"@noble/hashes": "1.8.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-visually-hidden": "^1.2.3",
"@rjsf/core": "^5.24.13",
"@rjsf/utils": "^5.24.13",
"@rjsf/validator-ajv8": "^5.24.13",
"@tanstack/react-virtual": "^3.13.12",
"@tauri-apps/api": "^2.8.0",
"@types/lodash": "^4.17.20",
"@walletconnect/modal-core": "^2.7.0",
"@walletconnect/types": "^2.23.0",
"axios": "^1.11.0",
"bignumber.js": "9.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"dotenv": "^17.2.2",
"drizzle-orm": "^0.44.5",
"framer-motion": "^12.23.12",
"handlebars": "^4.7.8",
"js-tiktoken": "^1.0.21",
"lodash": "^4.17.21",
"lucide-react": "^0.536.0",
"monaco-editor": "^0.52.2",
"next-themes": "^0.4.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.62.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.8.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tiktoken": "^1.0.22",
"tw-animate-css": "^1.3.8",
"zod": "^3.25.76",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@tailwindcss/postcss": "^4.1.13",
"@tauri-apps/cli": "^2.0.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^24.3.1",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.2",
"autoprefixer": "^10.4.20",
"concurrently": "^9.2.1",
"eslint": "^9.35.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.11.0",
"jsdom": "^26.0.0",
"playwright": "^1.55.1",
"postcss": "^8.4.49",
"tailwindcss": "^4.1.13",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0",
"vite": "^7.1.7",
"vite-plugin-monaco-editor-esm": "^2.0.2",
"vite-plugin-node-polyfills": "0.22.0",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^2.1.4"
},
"resolutions": {
"@hashgraphonline/standards-sdk": "0.1.145",
"@hashgraphonline/hashinal-wc": "2.0.35",
"@hashgraph/sdk": "2.77.0"
},
"overrides": {
"@hashgraphonline/standards-agent-kit": "0.2.164",
"@hashgraphonline/standards-sdk": "0.1.145",
"@hashgraphonline/hashinal-wc": "2.0.35",
"@noble/curves": "1.8.1",
"@hashgraph/sdk": "2.77.0"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}