-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 926 Bytes
/
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
{
"name": "@multiversx/sdk-dapp-utils",
"version": "1.0.3",
"description": "SDK for DApp utilities",
"main": "out/index.js",
"types": "out/index.d.js",
"files": [
"out/**/*"
],
"scripts": {
"publish-verdaccio": "npm unpublish --registry http://localhost:4873 @multiversx/[email protected] && rm -rf out && yarn compile && npm publish --registry http://localhost:4873",
"compile": "tsc -p tsconfig.json",
"pretest": "npm run compile",
"prepare": "npm run compile",
"test": "jest"
},
"author": "MultiversX",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@multiversx/sdk-core": ">= 13.12.0",
"@swc/core": "^1.4.17",
"@swc/jest": "^0.2.36",
"@types/jest": "29.5.13",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.4.2",
"typescript": "5.4.3"
},
"peerDependencies": {
"@multiversx/sdk-core": ">= 13.12.0"
}
}