-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.92 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.92 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
{
"name": "w3a-react",
"version": "0.1.0-alpha.17",
"description": "A React SDK for Web3Auth integration with Starknet",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/horuslabsio/w3a-react.git"
},
"homepage": "https://github.com/horuslabsio/w3a-react#readme",
"bugs": {
"url": "https://github.com/horuslabsio/w3a-react/issues"
},
"keywords": [
"starknet",
"ethereum",
"l2",
"web3auth"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"preview": "vite preview",
"prepublishOnly": "pnpm build",
"build": "tsup",
"clean": "rimraf dist",
"test": "vitest",
"test:ci": "vitest run",
"lint": "biome check src",
"lint:fix": "pnpm lint --write",
"format:check": "biome format .",
"format": "biome format . --write"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"starknet": "^7.6.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.4",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.30.1",
"tsup": "^8.5.0",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.2"
},
"dependencies": {
"@starknet-io/types-js": "^0.7.10",
"@starkware-industries/starkware-crypto-utils": "^0.2.1",
"@tanstack/react-query": "^5.25.0",
"@web3auth/modal": "^10.0.5",
"abi-wan-kanabi": "^2.2.4",
"bn.js": "^5.2.2",
"elliptic": "^6.6.1",
"viem": "^2.31.7",
"web3": "^4.16.0"
}
}