-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.26 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
{
"name": "@quest-chains/sdk",
"description": "An SDK for building applications on top of Quest Chains",
"version": "0.2.12",
"license": "GPL-3.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "tsdx watch",
"build": "yarn generate && rm -rf dist && yarn tsc",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"typecheck": "tsc --noEmit",
"prepare": "yarn generate",
"prepublishOnly": "yarn build",
"format": "prettier --ignore-path .gitignore --write \"{*,**/*}.{ts,tsx,js,jsx,json,yml,yaml,md,css,scss,sol}\"",
"generate": "graphql-codegen --config=src/codegen.yml"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn lint",
"pre-push": "yarn typecheck"
}
},
"repository": {
"type": "git",
"url": "https://github.com/quest-chains/sdk.git"
},
"bugs": {
"url": "https://github.com/quest-chains/sdk/issues"
},
"homepage": "https://github.com/quest-chains/sdk#readme",
"keywords": [
"ethereum",
"quest-chains",
"sdk"
],
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"arrowParens": "avoid",
"endOfLine": "auto"
},
"eslint": {
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
}
},
"author": "dan13ram",
"module": "dist/sdk.esm.js",
"devDependencies": {
"@graphql-codegen/add": "^3.2.0",
"@graphql-codegen/cli": "^2.13.5",
"@graphql-codegen/typescript": "^2.6.0",
"@graphql-codegen/typescript-operations": "^2.4.3",
"@graphql-codegen/typescript-urql": "^3.7.0",
"husky": "^8.0.1",
"tsdx": "^0.14.1"
},
"dependencies": {
"ajv": "^8.11.0",
"axios": "^1.1.1",
"ethers": "^5.7.1",
"fast-memoize": "^2.5.2",
"form-data": "^4.0.0",
"graphql": "^16.5.0",
"graphql-request": "^5.0.0",
"graphql-tag": "^2.12.6",
"urql": "^3.0.3"
},
"resolutions": {
"**/tslib": "^2.4.0",
"**/typescript": "^4.8.2",
"**/prettier": "^2.7.1",
"**/@typescript-eslint/eslint-plugin": "^5.36.2",
"**/@typescript-eslint/parser": "^5.36.2"
}
}