-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.3 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.3 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
{
"name": "@signordev/arc-onboard",
"version": "0.1.1",
"description": "Guided onboarding wizard for Circle dev-controlled wallets on Arc Testnet and other Circle-supported testnets.",
"license": "MIT",
"author": "SignorDev (https://github.com/Signor1)",
"homepage": "https://github.com/Signor1/arc-onboard#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Signor1/arc-onboard.git"
},
"bugs": {
"url": "https://github.com/Signor1/arc-onboard/issues"
},
"keywords": [
"circle",
"arc",
"arc-network",
"arc-testnet",
"wallets",
"developer-controlled-wallets",
"usdc",
"blockchain",
"onboarding",
"wizard",
"cli",
"developer-tools"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"bin": {
"arc-onboard": "bin/arc-onboard.js"
},
"files": [
"bin",
".next/standalone",
".next/static",
"public",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"launch": "next build && node bin/arc-onboard.js",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"prepublishOnly": "next build",
"prepack": "next build"
},
"dependencies": {
"@circle-fin/developer-controlled-wallets": "^9.0.0",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.4",
"@tanstack/react-query": "^5.59.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"next": "^15.0.3",
"open": "^10.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2"
}
}