-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
127 lines (127 loc) · 3.83 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@ssv-labs/ssv-sdk",
"version": "0.0.3",
"author": "SSV.Labs",
"description": "ssv labs sdk",
"keywords": [
"ssv",
"sdk"
],
"repository": "https://github.com/ssvlabs/ssv-sdk",
"files": [
"dist"
],
"main": "./dist/main.js",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.cjs",
"types": "./dist/main.d.ts"
},
"./utils": {
"import": "./dist/utils.js",
"require": "./dist/utils.cjs",
"types": "./dist/utils/index.d.ts"
}
},
"scripts": {
"lint": "eslint . --ext .ts --fix",
"watch": "rollup -w -c rollup.config.ts --configPlugin typescript --environment BUILD:development",
"build": "vite build",
"codegen": "graphql-codegen",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"v-pub-tarball": "npm publish --dry-run",
"type-check": "tsc -b",
"type:perf": "tsc --extendedDiagnostics",
"release": "release-it",
"commit": "git-cz",
"lint-staged": "pnpm run type-check && pnpm vitest run && lint-staged",
"prepare": "husky && pnpm run build"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,json}": [
"prettier --write --log-level silent",
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/typed-document-node": "^5.0.10",
"@graphql-codegen/typescript": "^4.1.0",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.3.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-viem": "^2.0.6",
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/contracts-upgradeable": "^4.9.6",
"@openzeppelin/hardhat-upgrades": "^3.0.5",
"@parcel/watcher": "^2.4.1",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/rollup-darwin-x64": "^4.30.1",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vitest/coverage-v8": "^1.5.0",
"@vitest/ui": "^1.5.0",
"commitizen": "^4.3.0",
"concurrently": "^9.0.1",
"cz-git": "^1.9.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^4.1.4",
"hardhat": "^2.22.17",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"release-it": "^17.2.0",
"rollup": "^4.14.3",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^23.0.8",
"typescript": "^5.4.5",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-glob": "^0.3.2",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^1.5.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"@safe-global/protocol-kit": "^5.0.3",
"abitype": "^1.0.6",
"dotenv": "^16.4.5",
"graphql-request": "^7.1.0",
"lodash-es": "^4.17.21",
"ssv-keys": "^1.2.1",
"viem": "^2.21.30",
"zod": "^3.23.8"
},
"license": "SEE LICENSE IN LICENCE FILE"
}