-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathpackage.json
130 lines (130 loc) · 3.96 KB
/
package.json
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@account-kit/react",
"version": "4.21.0",
"description": "React components and hooks for using Account Kit",
"author": "Alchemy",
"license": "MIT",
"private": false,
"type": "module",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"src/**/*.ts",
"src/**/*.tsx",
"!dist/**/*.tsbuildinfo",
"!vitest.config.ts",
"!.env",
"!src/**/*.test.ts",
"!src/**/*.test-d.ts",
"!src/__tests__/**/*"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
},
"./tailwind": {
"types": "./dist/types/tailwind/index.d.ts",
"import": "./dist/esm/tailwind/index.js",
"default": "./dist/esm/tailwind/index.js"
},
"./alchemy-account-context": {
"types": "./dist/types/AlchemyAccountContext.d.ts",
"import": "./dist/esm/AlchemyAccountContext.js",
"default": "./dist/esm/AlchemyAccountContext.js"
},
"./hydrate": {
"types": "./dist/types/hydrate.d.ts",
"import": "./dist/esm/hydrate.js",
"default": "./dist/esm/hydrate.js"
},
"./hooks": {
"types": "./dist/types/hooks/index.d.ts",
"import": "./dist/esm/hooks/index.js",
"default": "./dist/esm/hooks/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"prebuild": "tsx ./inject-version.ts",
"dev": "storybook dev",
"build": "yarn clean && yarn build:esm && yarn build:types",
"build:esm": "tsc --project tsconfig.build.json --outDir ./dist/esm",
"build:types": "tsc --project tsconfig.build.json --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap",
"docs:gen": "node ../../doc-gen/dist/esm/cli.js generate --in ./src/index.ts --out ../../site/pages/reference/account-kit/react",
"fern:gen": "node ../../fern-gen/dist/esm/cli.js generate --in ./src/index.ts --out ../../docs/pages/reference/account-kit/react",
"clean": "rm -rf ./dist",
"test": "vitest --passWithNoTests",
"test:run": "vitest run --passWithNoTests"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/core-server": "^8.5.3",
"@storybook/jest": "^0.2.3",
"@storybook/react-vite": "^8.5.3",
"@storybook/test": "^8.5.3",
"@storybook/testing-library": "^0.2.2",
"@tanstack/react-query": "^5.28.9",
"autoprefixer": "^10.4.20",
"msw": "^2.4.4",
"msw-storybook-addon": "^2.0.4",
"postcss": "^8.4.45",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^8.5.3",
"typescript": "^5.0.4",
"typescript-template": "*",
"vitest": "^2.0.4"
},
"dependencies": {
"@account-kit/core": "^4.21.0",
"@account-kit/infra": "^4.21.0",
"@account-kit/logging": "^4.21.0",
"@account-kit/signer": "^4.21.0",
"@tanstack/react-form": "^0.33.0",
"@tanstack/zod-form-adapter": "^0.33.0",
"@wagmi/connectors": "^5.1.15",
"react-remove-scroll": "^2.5.10",
"tailwindcss": "^3.4.3",
"zod": "^3.22.4",
"zustand": "^5.0.0-rc.2"
},
"peerDependencies": {
"@tanstack/react-query": "^5.28.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.3",
"viem": "^2.22.6",
"wagmi": "^2.12.7"
},
"resolutions": {
"viem": "2.22.6"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alchemyplatform/aa-sdk.git"
},
"bugs": {
"url": "https://github.com/alchemyplatform/aa-sdk/issues"
},
"homepage": "https://github.com/alchemyplatform/aa-sdk#readme",
"gitHead": "ee46e8bb857de3b631044fa70714ea706d9e317d",
"optionalDependencies": {
"alchemy-sdk": "^3.0.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}