-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.58 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.58 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
{
"name": "smart-account-manager",
"private": true,
"version": "0.8.6",
"type": "module",
"repository": "https://github.com/ethaccount/SAManager",
"author": "Johnson Chen <https://x.com/johnson86tw>",
"license": "AGPL-3.0-only",
"description": "A web-based wallet designed for interoperability and Dapp integration",
"homepage": "https://samanager.xyz",
"keywords": [
"ERC-4337",
"smart accounts",
"web3",
"blockchain",
"wallet",
"ethereum"
],
"scripts": {
"dev": "pnpm run dev:staging",
"dev:staging": "CLOUDFLARE_ENV=staging vite dev --mode staging --port 5173",
"dev:production": "CLOUDFLARE_ENV=production vite dev --mode production --port 5174",
"build": "pnpm run build:staging",
"build:staging": "CLOUDFLARE_ENV=staging vue-tsc --noEmit && pnpm run lint && vite build --mode staging",
"build:production": "CLOUDFLARE_ENV=production vue-tsc --noEmit && pnpm run lint && vite build --mode production",
"test:sdk": "pnpm -F sdk test",
"test": "vitest --run",
"test:all": "pnpm run test:sdk && pnpm run test",
"preview": "vite preview",
"clean": "rm -rf dist && rm -rf node_modules",
"typecheck": "vue-tsc --noEmit",
"deploy": "pnpm run build && wrangler deploy",
"cf-typegen": "wrangler types",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check": "pnpm typecheck && pnpm lint",
"check:sdk": "pnpm -F sdk check",
"check:all": "pnpm run check:sdk && pnpm run check"
},
"dependencies": {
"@internationalized/date": "^3.7.0",
"@noble/curves": "^1.8.1",
"@rhinestone/module-sdk": "^0.2.10",
"@samanager/sdk": "workspace:*",
"@tanstack/vue-table": "^8.21.3",
"@vee-validate/zod": "^4.15.0",
"@vue-dapp/core": "1.5.9",
"@vue-dapp/modal": "1.5.9",
"@vueuse/core": "^12.4.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ethers": "^6.15.0",
"evm-providers": "^0.5.7",
"json-with-bigint": "^3.4.4",
"lucide-vue-next": "^0.471.0",
"pinia": "3.0.3",
"pinia-plugin-persistedstate": "^4.5.0",
"radix-vue": "^1.9.12",
"reka-ui": "^2.2.0",
"sendop": "0.5.7",
"tailwind-merge": "^2.6.0",
"unique-names-generator": "^4.7.1",
"uuid": "^11.1.0",
"vee-validate": "^4.15.0",
"viem": "^2.31.6",
"vue": "^3.5.13",
"vue-final-modal": "^4.5.5",
"vue-router": "^4.5.0",
"vue-sonner": "^1.3.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/helpers": "^7.27.1",
"@cloudflare/vite-plugin": "^1.11.0",
"@types/circomlibjs": "^0.1.6",
"@types/node": "^22.12.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/eslint-plugin": "^1.2.1",
"@vue/eslint-config-typescript": "^14.5.0",
"autoprefixer": "10.4.14",
"circomlibjs": "^0.1.7",
"eslint": "^9.27.0",
"eslint-plugin-pinia": "^0.4.1",
"eslint-plugin-vue": "^10.1.0",
"globals": "^16.2.0",
"happy-dom": "20.0.2",
"postcss": "8.5.3",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.2",
"unplugin-auto-import": "0.16.6",
"unplugin-vue-components": "0.25.1",
"vite": "^7.1.5",
"vite-bundle-analyzer": "^0.18.1",
"vite-plugin-html-config": "^2.0.2",
"vite-plugin-node-polyfills": "^0.24.0",
"vitest": "^3.1.4",
"vue-tsc": "^2.2.8",
"wrangler": "4.27.0"
},
"pnpm": {
"overrides": {
"@babel/helpers": "7.27.1",
"postcss": "8.5.3",
"brace-expansion": ">=2.0.2",
"pinia": "3.0.3",
"pbkdf2": ">=3.1.3",
"@eslint/plugin-kit": ">=0.3.4",
"sha.js": ">=2.4.12",
"glob": ">=10.5.0",
"tar": ">=7.5.7",
"qs": ">=6.14.1"
}
},
"packageManager": "pnpm@9.14.4+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab"
}