-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1017 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "metahubjs",
"version": "1.1.9",
"description": "metahub javascript sdk",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"src/",
"dist/"
],
"scripts": {
"build": "tsc --noEmit && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metahubwallet/metahubjs.git"
},
"keywords": [
"metahub",
"wallet",
"eos",
"eosjs"
],
"author": "metahub",
"license": "MIT",
"bugs": {
"url": "https://github.com/metahubwallet/metahubjs/issues"
},
"homepage": "https://github.com/metahubwallet/metahubjs#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.3",
"rollup": "^3.28.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"rollup-plugin-esbuild-minify": "^1.1.2"
}
}