-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.45 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
{
"name": "@crossmint/wallets-sdk",
"version": "0.21.0",
"repository": "https://github.com/Crossmint/crossmint-sdk",
"license": "Apache-2.0",
"author": "Paella Labs Inc",
"sideEffects": false,
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist", "LICENSE"],
"scripts": {
"build": "pnpm generate && tsup",
"dev": "tsup --watch",
"test:vitest": "vitest run --passWithNoTests",
"openapi-ts": "openapi-ts",
"generate": "pnpm run openapi-ts",
"generate:docs": "typedoc"
},
"dependencies": {
"@crossmint/client-sdk-window": "workspace:*",
"@crossmint/client-signers": "workspace:*",
"@crossmint/common-sdk-auth": "workspace:*",
"@crossmint/common-sdk-base": "workspace:*",
"@hey-api/client-fetch": "0.8.1",
"@solana/web3.js": "1.98.1",
"abitype": "1.0.8",
"bs58": "5.0.0",
"@noble/hashes": "1.8.0",
"ox": "0.6.9",
"tweetnacl": "1.0.3",
"viem": "2.33.1"
},
"devDependencies": {
"@hey-api/openapi-ts": "0.69.2",
"typedoc": "0.28.17",
"typedoc-plugin-frontmatter": "1.3.0",
"typedoc-plugin-markdown": "4.5.2"
},
"peerDependencies": {
"@solana/web3.js": "^1.98.1"
}
}