-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.5 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.5 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
{
"name": "frak-wallet",
"version": "0.1.0",
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.30.0",
"@pulumi/kubernetes": "^4.28.0",
"@pulumi/pulumi": "^3.229.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@typescript/native-preview": "^7.0.0-dev.20260316.1",
"@vitejs/plugin-react": "catalog:",
"@vitest/coverage-v8": "^4.1.4",
"knip": "^6.4.1",
"npm-check-updates": "^19.6.3",
"rimraf": "^6.1.3",
"sst": "4.6.11",
"tauri-plugin-webauthn-api": "^0.2.0",
"typedoc": "^0.28.17",
"typedoc-plugin-frontmatter": "^1.3.1",
"typedoc-plugin-inline-sources": "^1.3.0",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"description": "Frak ecosystem packages",
"license": "GNU GPL 3.0",
"packageManager": "bun@1.3.11",
"private": true,
"scripts": {
"build:infra": "sst build --stage dev",
"build:sdk": "bun run --cwd packages/rpc build && dirs=(core legacy react components); for d in ${dirs[@]}; do bun run --cwd sdk/${d} build; done",
"changeset": "changeset",
"changeset:release": "bun run --cwd packages/rpc publish && bun publish --tolerate-republish --cwd packages/rpc && dirs=(core legacy react components); for d in ${dirs[@]}; do bun run --cwd sdk/${d} publish && bun publish --tolerate-republish --cwd sdk/${d}; done",
"changeset:version": "changeset version && bun install --lockfile-only",
"clean": "rimraf .sst/dist/ .sst/artifacts/",
"deploy": "sst deploy --stage dev",
"deploy:example": "sst deploy --stage example",
"deploy:prod": "sst deploy --stage prod",
"deploy-gcp:prod": "sst deploy --stage gcp-production",
"deploy-gcp:staging": "sst deploy --stage gcp-staging",
"dev": "bun sst dev",
"dev:sandbox": "bun run --filter '*' dev:sandbox",
"env:sandbox": "echo 'Run bun sst dev, then type env:sandbox in the SST dev UI'",
"format": "biome check --write .",
"format:check": "biome check .",
"knip": "knip",
"knip:backend": "knip -W services/backend --include classMembers",
"lint": "biome lint .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:apps": "vitest run --project *-unit",
"test:sdk": "vitest run --project core-sdk-unit --project react-sdk-unit",
"update:deps": "npm-check-updates -ui -ws",
"typecheck": "bun run --filter '*' typecheck"
},
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"sdk/*",
"example/*",
"services/*"
]
},
"catalog": {
"viem": "^2.47.16",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"@types/node": "^25.6.0",
"typescript": "^6.0.2",
"zustand": "^5.0.11",
"wagmi": "^3.6.1",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/react-query-persist-client": "^5.90.22",
"@tanstack/query-async-storage-persister": "^5.90.22",
"vite": "^8.0.8",
"@vitejs/plugin-react": "^6.0.0"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tinymomentum/liquid-glass-react": "^1.0.6",
"caniuse-lite": "^1.0.30001779",
"vite": "^8.0.8"
},
"resolutions": {
"caniuse-lite": "^1.0.30001779",
"parse5": "^7.3.0"
},
"trustedDependencies": []
}