-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.22 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
55
56
57
{
"name": "@hicaru/bearby.js",
"version": "0.5.9",
"description": " The web3 inject of bearby walet to access massa blockchain ",
"main": "index.js",
"repository": "[email protected]:bearby-wallet/bearby-web3.git",
"author": "Rinat <[email protected]>",
"license": "MIT",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"serve": "http-server ./"
},
"files": [
"dist/*",
"config/*",
"packages/*",
"types/*",
"index.js",
"index.ts"
],
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"browser": {
"crypto": false
},
"keywords": [
"massa",
"web3",
"bearby",
"blockchain",
"bitcoin",
"bytes",
"cryptography"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"http-server": "^14.1.1",
"rollup": "^3.5.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
}
}