-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.93 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.93 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
{
"name": "suiclient-error-decoder",
"version": "1.1.0",
"description": "A comprehensive error decoder for Sui blockchain transactions with support for custom error codes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"!dist/**/*.test.*",
"README.md",
"LICENSE"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
"coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Signor1/suiClient-Error-Decoder.git"
},
"keywords": [
"sui",
"blockchain",
"error",
"decoder",
"move",
"transaction",
"cetus",
"defi",
"error-decoder",
"abort-errors",
"sui-error-decoder",
"custom-errors",
"errors",
"move-abort-errors",
"abort",
"typescript",
"javascript"
],
"author": "SignorDev <emmanuelomemgboji@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Signor1/suiClient-Error-Decoder/issues"
},
"homepage": "https://github.com/Signor1/suiClient-Error-Decoder#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.3",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"coverage-badges": "^1.0.7",
"eslint": "^9.29.0",
"eslint-plugin-jest": "^28.14.0",
"jest": "^30.0.0",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
}
}