-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "mina-graphql-sdk",
"version": "0.1.4",
"description": "A typesafe TypeScript SDK for interacting with Mina's GraphQL daemon. Features include automatically generated types and wrappers for queries and mutations, a direct GraphQL query option for advanced scenarios, and easy access to accounts, blocks, and transactions data.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/MartinMinkov/mina-graphql-sdk.git"
},
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "npx tsc",
"start": "npm run build && node dist/src/index.js",
"dev": "npx nodemon src/index.ts",
"clean": "rm -rf dist",
"codegen": "graphql-codegen --config codegen.ts"
},
"keywords": [
"mina",
"graphql",
"sdk",
"typescript",
"queries",
"mutations",
"accounts",
"blocks",
"transactions"
],
"author": "Martin Minkov",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "4.2.2",
"@graphql-codegen/typescript": "^4.0.4",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.1.2",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6"
}
}