-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.38 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.38 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
{
"name": "@drips-network/sdk",
"version": "0.1.0-alpha.15",
"license": "GPL-3.0-or-later",
"description": "💧TypeScript SDK for Drips",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/drips-network/sdk.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./ethers": {
"types": "./dist/internal/blockchain/adapters/ethers/ethersAdapters.d.ts",
"require": "./dist/internal/blockchain/adapters/ethers/ethersAdapters.cjs",
"import": "./dist/internal/blockchain/adapters/ethers/ethersAdapters.js"
}
},
"files": [
"dist/*"
],
"scripts": {
"test": "vitest run tests/unit",
"test:coverage": "vitest run tests/unit --coverage",
"lint": "gts lint",
"fix": "gts fix",
"clean": "gts clean && rm -rf build",
"compile": "tsup src/index.ts src/internal/blockchain/adapters/ethers/ethersAdapters.ts --format esm,cjs --dts --out-dir dist --tsconfig tsconfig.build.json --external peerDependencies --splitting --treeshake",
"prepare": "npm run compile",
"pretest": "tsc --noEmit --project tsconfig.json",
"posttest": "npm run lint",
"gql:generate-schema": "./scripts/generate-schema.sh",
"gql:build-types": "./scripts/build-gql-types.sh",
"gql:build": "npm run gql:generate-schema && npm run gql:build-types",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"devDependencies": {
"@graphql-codegen/cli": "^5.0.7",
"@graphql-codegen/near-operation-file-preset": "^3.0.1",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-codegen/typescript-operations": "^4.6.1",
"@types/node": "^22.7.5",
"@vitest/coverage-v8": "^3.2.3",
"dotenv": "^16.5.0",
"gts": "^6.0.2",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.6.3",
"vitest": "^3.2.0"
},
"dependencies": {
"@efstajas/versioned-parser": "^0.1.4",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"pinata": "^2.4.0",
"zod": "^3.25.28"
},
"peerDependencies": {
"ethers": "^6.13.4",
"viem": "^2.30.1"
},
"peerDependenciesMeta": {
"ethers": {
"optional": true
}
}
}