-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
98fac44
commit 7d8da73
Showing
44 changed files
with
111 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"name": "@frak-wallet/example", | ||
"version": "0.1.0", | ||
"description": "Simple demo of a future Frak Wallet", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "sst bind next dev", | ||
"build": "sst bind next dev next build", | ||
"start": "sst bind next dev next start", | ||
"lint": "biome lint .", | ||
"format:check": "biome check .", | ||
"format": "biome check --apply .", | ||
"deploy": "sst deploy --stage prod" | ||
}, | ||
"dependencies": { | ||
"@tanstack/store": "^0.3.1", | ||
"@uidotdev/usehooks": "experimental", | ||
"iron-session": "^8.0.1", | ||
"mongodb": "^6.3.0", | ||
"next": "14.1.0", | ||
"radash": "^11.0.0", | ||
"react": "^18", | ||
"react-dom": "^18", | ||
"viem": "^2.7.1" | ||
}, | ||
"devDependencies": { | ||
"sst": "^2.40.1", | ||
"@types/node": "^20", | ||
"@types/react": "^18", | ||
"@types/react-dom": "^18", | ||
"typescript": "^5" | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"name": "@frak-wallet/wallet", | ||
"version": "0.1.0", | ||
"description": "Simple demo of a future Frak Wallet", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "sst bind next dev", | ||
"build": "sst bind next dev next build", | ||
"start": "sst bind next dev next start", | ||
"lint": "biome lint .", | ||
"format:check": "biome check .", | ||
"format": "biome check --apply .", | ||
"deploy": "sst deploy --stage prod" | ||
}, | ||
"dependencies": { | ||
"@peculiar/asn1-ecc": "^2.3.8", | ||
"@peculiar/asn1-schema": "^2.3.8", | ||
"@simplewebauthn/browser": "^9.0.1", | ||
"@simplewebauthn/server": "^9.0.1", | ||
"@tanstack/store": "^0.3.1", | ||
"@uidotdev/usehooks": "experimental", | ||
"iron-session": "^8.0.1", | ||
"mongodb": "^6.3.0", | ||
"next": "14.1.0", | ||
"permissionless": "^0.0.35", | ||
"radash": "^11.0.0", | ||
"react": "^18", | ||
"react-dom": "^18", | ||
"unique-username-generator": "^1.3.0", | ||
"viem": "^2.7.1" | ||
}, | ||
"devDependencies": { | ||
"sst": "^2.40.1", | ||
"@simplewebauthn/types": "^9.0.1", | ||
"@types/node": "^20", | ||
"@types/react": "^18", | ||
"@types/react-dom": "^18", | ||
"typescript": "^5" | ||
} | ||
} |
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/// <reference path="../../.sst/types/index.ts" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"compilerOptions": { | ||
"lib": ["es2023", "esnext", "dom", "dom.iterable"], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"strict": true, | ||
"noEmit": true, | ||
"esModuleInterop": true, | ||
"module": "esnext", | ||
"moduleResolution": "bundler", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"jsx": "preserve", | ||
"incremental": true, | ||
"plugins": [{"name": "next"}], | ||
"paths": { | ||
"@/*": ["./src/*"] | ||
}, | ||
"target": "esnext" | ||
}, | ||
"include": [ | ||
"packages/wallet/next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], | ||
"exclude": ["node_modules"], | ||
"target": "esnext" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters