-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.58 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
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
{
"name": "@ssv-labs/bapps-sdk",
"version": "0.0.13",
"author": "SSV.Labs",
"description": "ssv labs based apps sdk",
"keywords": [
"ssv",
"sdk",
"based apps"
],
"repository": "https://github.com/ssvlabs/based-apps-sdk",
"files": [
"dist"
],
"type": "module",
"main": "./dist/main.js",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.mjs",
"types": "./dist/main.d.ts"
},
"./utils": {
"import": "./dist/utils.mjs",
"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 --noEmit",
"type:perf": "tsc --extendedDiagnostics",
"release": "release-it",
"commit": "git-cz",
"lint-staged": "pnpm run type-check && lint-staged",
"prepare": "husky"
},
"devDependencies": {
"@0no-co/graphqlsp": "1.14.0",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@eslint/js": "9.31.0",
"@graphql-codegen/cli": "5.0.7",
"@graphql-codegen/schema-ast": "4.1.0",
"@graphql-codegen/typed-document-node": "5.1.2",
"@graphql-codegen/typescript": "4.1.6",
"@graphql-codegen/typescript-graphql-request": "6.3.0",
"@graphql-codegen/typescript-operations": "4.6.1",
"@nomicfoundation/hardhat-toolbox": "6.0.0",
"@nomicfoundation/hardhat-viem": "2.0.6",
"@openzeppelin/contracts": "5.4.0",
"@openzeppelin/contracts-upgradeable": "5.4.0",
"@openzeppelin/hardhat-upgrades": "3.9.1",
"@parcel/watcher": "2.5.1",
"@release-it/conventional-changelog": "10.0.1",
"@rollup/plugin-alias": "5.1.1",
"@rollup/plugin-commonjs": "28.0.6",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.4",
"@rollup/rollup-darwin-x64": "4.45.0",
"@types/eslint-plugin-prettier": "3.1.3",
"@types/lodash-es": "4.17.12",
"@types/node": "24.0.14",
"@typescript-eslint/eslint-plugin": "8.37.0",
"@typescript-eslint/parser": "8.37.0",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"commitizen": "4.3.1",
"concurrently": "9.2.0",
"cz-git": "1.12.0",
"eslint": "9.31.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.3",
"eslint-plugin-unused-imports": "4.1.4",
"hardhat": "2.25.0",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"prettier": "3.6.2",
"release-it": "19.0.3",
"rollup": "4.45.0",
"rollup-plugin-delete": "3.0.1",
"rollup-plugin-dts": "6.2.1",
"rollup-plugin-tsconfig-paths": "1.5.2",
"rollup-plugin-typescript2": "0.36.0",
"semantic-release": "24.2.7",
"typescript": "5.8.3",
"vite": "7.0.4",
"vite-plugin-dts": "4.5.4",
"vite-plugin-glob": "0.3.2",
"vite-plugin-node-polyfills": "0.24.0",
"vitest": "3.2.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@graphql-typed-document-node/core": "3.2.0",
"@safe-global/protocol-kit": "6.1.0",
"abitype": "1.0.8",
"dotenv": "17.2.0",
"graphql-request": "7.2.0",
"lodash-es": "4.17.21",
"viem": "2.31.7",
"zod": "4.0.5"
},
"license": "SEE LICENSE IN LICENCE FILE"
}