-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.56 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 3.56 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
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
131
132
133
134
{
"name": "@guildpass/sdk",
"version": "0.1.0",
"description": "The official TypeScript SDK for GuildPass, a Web3 membership and access-control protocol.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./client": {
"types": "./dist/client.d.ts",
"require": "./dist/client.js",
"import": "./dist/client.mjs"
},
"./errors": {
"types": "./dist/errors.d.ts",
"require": "./dist/errors.js",
"import": "./dist/errors.mjs"
},
"./utils": {
"types": "./dist/utils.d.ts",
"require": "./dist/utils.js",
"import": "./dist/utils.mjs"
},
"./types": {
"types": "./dist/types.d.ts",
"require": "./dist/types.js",
"import": "./dist/types.mjs"
},
"./adapters/viem": {
"types": "./dist/adapters/viem.d.ts",
"require": "./dist/adapters/viem.js",
"import": "./dist/adapters/viem.mjs"
},
"./adapters/ethers": {
"types": "./dist/adapters/ethers.d.ts",
"require": "./dist/adapters/ethers.js",
"import": "./dist/adapters/ethers.mjs"
},
"./testing": {
"types": "./dist/testing.d.ts",
"require": "./dist/testing.js",
"import": "./dist/testing.mjs"
},
"./merkle": {
"types": "./dist/merkle.d.ts",
"require": "./dist/merkle.js",
"import": "./dist/merkle.mjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"test:run": "vitest run",
"test:compat": "vitest run --workspace=browser-jsdom --workspace=edge",
"test:smoke": "node tests/smoke/esm.smoke.mjs && node tests/smoke/cjs.smoke.cjs && tsc -p tsconfig.smoke.json",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"docs": "typedoc src/index.ts",
"validate": "npx --yes publint",
"api-report": "api-extractor run --local --verbose",
"api-report:ci": "pnpm build && api-extractor run --verbose",
"check-api-diff": "node scripts/check-api-diff.mjs",
"size": "node scripts/check-bundle-size.mjs",
"size:generate": "node scripts/check-bundle-size.mjs --generate"
},
"keywords": [
"web3",
"membership",
"access-control",
"guild",
"token-gating",
"sdk",
"typescript"
],
"author": "GuildPass",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Adamantine-Guild/guildpass-sdk.git"
},
"bugs": {
"url": "https://github.com/Adamantine-Guild/guildpass-sdk/issues"
},
"homepage": "https://github.com/Adamantine-Guild/guildpass-sdk#readme",
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.34.1",
"sideEffects": false,
"dependencies": {
"js-sha3": "^0.9.3"
},
"peerDependencies": {
"ethers": ">=6",
"viem": ">=1"
},
"peerDependenciesMeta": {
"ethers": {
"optional": true
},
"viem": {
"optional": true
}
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@microsoft/api-extractor": "^7.58.9",
"@types/node": "^25.9.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"esbuild": "^0.28.1",
"eslint": "^8.56.0",
"fast-check": "3.22.0",
"jsdom": "^29.1.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typedoc": "^0.25.8",
"typescript": "^5.3.3",
"viem": "^2.55.7",
"vitest": "^1.6.1"
}
}