-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.1 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.1 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
{
"name": "@mitumjs/mitumjs",
"version": "2.3.0",
"description": "framework for imfact network",
"main": "dist/bundle.cjs.cjs",
"module": "dist/bundle.esm.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --emitDeclarationOnly && rollup -c",
"check:orphans": "npx madge --orphans ./src/**/*",
"check:circular": "npx madge --circular --image ./circular.svg ./src/**/*",
"check:dependency": "npx madge --dot ./src/**/* > ./dot.gv "
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/bundle.cjs.cjs",
"import": "./dist/bundle.esm.mjs"
}
},
"keywords": [
"mitum",
"mitum-currency",
"mitum-token",
"mitum-point",
"mitum-nft",
"mitum-sto",
"mitum-dao",
"mitum-credential",
"mitum-kyc",
"mitum-timestamp",
"mitum-authdid"
],
"author": "socialinfratech",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/ProtoconNet/mitumjs.git"
},
"bugs": {
"url": "https://github.com/ProtoconNet/mitumjs/issues"
},
"homepage": "https://github.com/ProtoconNet/mitumjs#readme",
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.22.15",
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@tsconfig/recommended": "^1.0.3",
"@types/elliptic": "^6.4.16",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"jest": "^29.7.0",
"madge": "^6.1.0",
"rollup": "^4.9.4",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.8.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@noble/hashes": "^1.3.2",
"@noble/secp256k1": "^1.7.1",
"axios": "^1.7.7",
"big-integer": "^1.6.51",
"bs58": "^5.0.0",
"bs58check": "^3.0.1",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"ethers": "^6.7.0",
"int64-buffer": "1.0.1",
"js-sha3": "^0.8.0"
}
}