-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathpackage.json
84 lines (84 loc) · 2.72 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
{
"name": "@account-kit/core",
"version": "4.21.0",
"description": "Core library for account kit that provides state management and framework indepednent abstractions across infra, Alchemy Signer, and Smart Contracts",
"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",
"!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"
},
"./web": {
"types": "./dist/types/environments/web/index.d.ts",
"import": "./dist/esm/environments/web/index.js",
"default": "./dist/esm/environments/web/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"prebuild": "tsx ./inject-version.ts",
"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",
"clean": "rm -rf ./dist",
"docs:gen": "node ../../doc-gen/dist/esm/cli.js generate --in ./src/index.ts --out ../../site/pages/reference/account-kit/core",
"fern:gen": "node ../../fern-gen/dist/esm/cli.js generate --in ./src/index.ts --out ../../docs/pages/reference/account-kit/core",
"test": "vitest --passWithNoTests",
"test:run": "vitest run --passWithNoTests"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"typescript": "^5.0.4",
"typescript-template": "*",
"vitest": "^2.0.4"
},
"dependencies": {
"@account-kit/infra": "^4.21.0",
"@account-kit/logging": "^4.21.0",
"@account-kit/react-native-signer": "^4.21.0",
"@account-kit/signer": "^4.21.0",
"@account-kit/smart-contracts": "^4.21.0",
"js-cookie": "^3.0.5",
"zod": "^3.22.4",
"zustand": "^5.0.0-rc.2"
},
"peerDependencies": {
"viem": "^2.22.6",
"wagmi": "^2.12.7"
},
"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"
}
}