-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.03 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.03 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
{
"name": "@particle-network/universal-deposit",
"version": "0.1.0",
"description": "Deposit SDK for Universal Accounts - solve the empty smart account problem",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.mjs",
"require": "./dist/react.js"
},
"./react/auth-core": {
"types": "./dist/react/auth-core.d.ts",
"import": "./dist/react/auth-core.mjs",
"require": "./dist/react/auth-core.js"
},
"./styles.css": {
"style": "./dist/styles.css",
"default": "./dist/styles.css"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && tailwindcss -i src/react/styles.css -o dist/styles.css --minify",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run src/__tests__/integration/"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.2",
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"tailwindcss": "^4",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"keywords": [
"particle",
"universal-accounts",
"deposit",
"web3",
"blockchain"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/particle-network/universal-deposit"
},
"dependencies": {
"@particle-network/auth-core": "^2.1.1",
"@particle-network/auth-core-modal": "^1.5.2",
"@particle-network/universal-account-sdk": "^1.0.26",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"qrcode.react": "^4.2.0",
"tailwind-merge": "^3.4.0"
}
}