-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
198 lines (198 loc) Β· 6.66 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
"name": "@nevermined-io/sdk",
"version": "3.0.44",
"description": "Javascript SDK for connecting with Nevermined Data Platform ",
"main": "./dist/node/sdk.js",
"typings": "./dist/node/sdk.d.ts",
"unpkg": "./dist/browser/sdk.cjs2.min.js",
"scripts": {
"build": "yarn clean && yarn build:tsc && yarn build:dist",
"build:tsc": "tsc --sourceMap",
"build:metadata": "./scripts/get-metadata.js > src/metadata.json",
"build:dist": "cross-env NODE_ENV=production webpack",
"build:watch": "tsc -w",
"jest:test": "jest --no-cache --coverage --rootDir test -w 1 ",
"test": "mocha --config test/.mocharc.json ",
"test:all": "mocha --config test/.mocharc.json ./test/**/*.test.ts",
"integration": "export NETWORK_NAME=${NETWORK_NAME} ;mocha --config integration/.mocharc.json ",
"integration:all": "export NETWORK_NAME=geth-localnet;mocha --config integration/.mocharc.json ./integration/nevermined/*.test.ts",
"integration:subgraph": "mocha --config integration/.mocharc.json ./integration/**/*.test.subgraph.ts",
"integration:aave": "mocha --config aave_integration/.mocharc.json ./aave_integration/**/*.test.ts",
"integration:e2e": "mocha --config integration/.mocharc.json ./integration/nevermined/NFT1155Api.e2e.test.ts",
"integration:e2e:mumbai": "export NETWORK_NAME=mumbai; yarn integration:e2e",
"integration:compute": "mocha --config integration/.mocharc.json ./integration/compute/Compute*.test.ts",
"integration:external": "mocha --config integration/.mocharc.json ./integration/external/Zerodev.test.ts",
"clean": "rm -rf ./dist/ ./doc/ ./.nyc_output",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix --quiet",
"format": "prettier --parser typescript --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx}'",
"docs": "typedoc",
"run": "ts-node",
"release": "release-it --non-interactive",
"changelog": "auto-changelog --commit-limit false && sed -i 's/keyko-io/nevermind-/nevermined-io//' CHANGELOG.md",
"prepublishOnly": "yarn build",
"prebuild": "yarn build:metadata",
"prepare": "yarn build:metadata && husky install .husky",
"prettier": "prettier --config ./.prettierrc.js --write \"**/*.{js,json,md,sol,ts,yml}\"",
"prettier:check": "prettier --check --config ./.prettierrc.js \"**/*.{js,json,md,sol,ts,yml}\"",
"artifacts:download": "./scripts/download-artifacts.sh",
"utils:generate-ddos": "ts-node ./scripts/generate-ddos.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nevermined-io/sdk-js.git"
},
"keywords": [],
"author": "Nevermined <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nevermined-io/sdk-js/issues"
},
"homepage": "https://github.com/nevermined-io/sdk-js#readme",
"dependencies": {
"@alchemy/aa-core": "3.12.1",
"@apollo/client": "^3.7.16",
"@turnkey/viem": "0.4.16",
"@zerodev/ecdsa-validator": "5.2.3",
"@zerodev/sdk": "5.2.11",
"@zerodev/session-key": "5.3.0",
"assert": "^2.0.0",
"cross-fetch": "^4.0.0",
"crypto-browserify": "^3.12.0",
"deprecated-decorator": "^0.1.6",
"eccrypto": "1.1.6",
"fflate": "0.8.2",
"form-data": "^4.0.0",
"graphql": "^16.7.1",
"https-browserify": "^1.0.0",
"jose": "^4.11.2",
"js-file-download": "^0.4.12",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"permissionless": "^0.1.22",
"pluralize": "^8.0.0",
"save-file": "^2.3.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0",
"uuid": "^9.0.1",
"viem": "2.9.31",
"vm-browserify": "^1.1.2",
"whatwg-url": "^14.0.0"
},
"peerDependencies": {
"@alchemy/aa-core": "3.12.1",
"@zerodev/ecdsa-validator": "^5.2.3",
"@zerodev/sdk": "^5.2.11",
"@zerodev/session-key": "^5.3.0",
"permissionless": "^0.1.26",
"viem": "2.9.31"
},
"devDependencies": {
"@ambire/signature-validator": "^1.3.1",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@faker-js/faker": "^6.3.1",
"@opengsn/provider": "^3.0.0-beta.8",
"@release-it/bumper": "^1.4.1",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.3",
"@types/chai-spies": "^1.0.1",
"@types/expect": "^24.3.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.195",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@types/node-fetch": "^2.5.7",
"@types/pluralize": "^0.0.29",
"@types/tar": "^6.1.5",
"@types/temp": "^0.9.1",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@typescript-eslint/typescript-estree": "^7.3.1",
"auto-changelog": "^2.4.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-exclude": "^2.1.0",
"chai-spies": "^1.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-nevermined": "^0.2.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-tsdoc": "^0.2.17",
"express": "^4.18.2",
"ganache": "^7.9.1",
"http-proxy": "^1.18.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.0.4",
"mocha": "^10.3.0",
"mock-local-storage": "^1.1.24",
"ora": "^6.3.1",
"prettier": "^2.7.1",
"prettier-package-json": "^2.7.0",
"resolve-url-loader": "^5.0.0",
"source-map-support": "^0.5.19",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tar": "^6.1.11",
"terser-webpack-plugin": "^5.3.1",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"tsx": "^4.7.1",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.4.3",
"url": "^0.11.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"lint-staged": {
"**/*.{js,json,md,sol,ts,yml}": [
"yarn run prettier"
],
"**/*.ts": [
"yarn run lint"
]
},
"release-it": {
"hooks": {
"after:bump": "npm run changelog && npm run doc:json"
},
"plugins": {
"@release-it/bumper": {
"out": [
"package.json",
"package-lock.json"
]
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"assets": [
"dist/sdk-js.json"
]
},
"npm": {
"publish": false
}
},
"browser": {
"fs": false
}
}