-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "chaingraph-ts",
"version": "0.2.2",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "rm -r dist && yarn tsc && yarn build:copytypes",
"build:copytypes": "cd dist && mkdir generated && cp ../src/generated/graphql-env.d.ts generated/",
"test": "vitest"
},
"author": "mr-zwets",
"license": "ISC",
"description": "Chaingraph-ts is a TypeScript library that simplifies using Chaingraph by providing type-safe GraphQL interactions and helper functions.",
"dependencies": {
"@bitauth/libauth": "^3.0.0",
"@urql/core": "^5.0.8",
"gql.tada": "^1.8.10",
"graphql-ws": "^5.16.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/ws": "^8.5.13",
"globals": "^15.12.0",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mr-zwets/chaingraph-ts.git"
},
"keywords": [
"chaingraph",
"bitcoin-cash",
"bitcoincash",
"cashtokens"
],
"bugs": {
"url": "https://github.com/mr-zwets/chaingraph-ts/issues"
},
"homepage": "https://github.com/mr-zwets/chaingraph-ts#readme"
}