-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
91 lines (91 loc) · 2.12 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
{
"name": "@guildxyz/sdk",
"version": "2.6.8",
"description": "SDK for Guild.xyz Public API ",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/guildxyz/guild-sdk.git"
},
"keywords": [
"guild",
"guildxyz",
"guildauth",
"agoraxyz",
"agoraspace"
],
"author": {
"name": "baloo",
"email": "[email protected]"
},
"contributors": [
{
"name": "ejay",
"email": "[email protected]"
},
{
"name": "Devid",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/guildxyz/guild-sdk/issues"
},
"homepage": "https://guild.xyz",
"scripts": {
"build": "tsup ./src/index.ts",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"test": "npx dotenv-cli -e .test.env -- npx vitest run",
"testWithPrivileged": "npx dotenv-cli -e .test.privileged.env -- npm run test"
},
"dependencies": {
"@guildxyz/types": "^1.9.42",
"ethers": "^6.7.1",
"randombytes": "^2.1.0"
},
"devDependencies": {
"@guildxyz/queues": "^0.0.8",
"@types/node": "^20.6.3",
"@types/randombytes": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"dotenv-cli": "^7.3.0",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.5",
"zod": "^3.22.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix --cache --cache-location 'node_modules/.cache/.eslintcache'",
"*.{js,ts,md}": "pretty-quick --staged"
},
"tsup": {
"format": [
"esm",
"cjs"
],
"dts": {
"resolve": true,
"entry": [
"./src/index.ts"
],
"compilerOptions": {
"moduleResolution": "node",
"strict": true,
"strictNullChecks": true
}
},
"clean": true,
"target": "esnext"
}
}