-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.71 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
{
"name": "@multiversx/sdk-web-wallet-iframe-provider",
"version": "2.0.1",
"description": "Signing provider for dApps: Web Wallet Iframe Provider",
"main": "out/index.js",
"types": "out/index.d.js",
"files": [
"out/**/*"
],
"engines": {
"node": ">=18"
},
"scripts": {
"unpublish-verdaccio": "npm unpublish @multiversx/[email protected] --registry http://localhost:4873",
"publish-verdaccio": "npm run unpublish-verdaccio && npm run compile && npm publish --registry http://localhost:4873/",
"compile": "tsc -p tsconfig.json",
"pretest": "npm run compile",
"prepare": "npm run compile",
"lint": "eslint --fix --ext js,ts src",
"test": "jest"
},
"author": "MultiversX",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@multiversx/sdk-core": ">= 13.5.0",
"@multiversx/sdk-web-wallet-cross-window-provider": ">= 2.0.1",
"@types/node": "18.19.0",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.14.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.0.0",
"esmify": "^0.1.2",
"jest": "29.6.2",
"jest-environment-jsdom": "28.1.3",
"prettier": "3.1.0",
"ts-jest": "29.1.1",
"typescript": "5.0.4"
},
"peerDependencies": {
"@multiversx/sdk-core": ">= 13.5.0",
"@multiversx/sdk-web-wallet-cross-window-provider": ">= 2.0.1"
},
"dependencies": {
"@types/jest": "^29.5.11",
"@types/qs": "6.9.10",
"qs": "6.11.2"
}
}