-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "web3-input",
"version": "0.0.1",
"description": "web3-input is the parsimonious way to interact with Ethereum.",
"main": "./src/index.mjs",
"scripts": {
"build": "esbuild src/index.mjs --outfile=web3-input.js --bundle --minify --sourcemap --target=es2020",
"serve": "ssl-serve . --ssl",
"watch": "watch 'npm run build' ./src/ -d",
"dev": "concurrently 'npm run watch' 'npm run serve'"
},
"browser": {
"path": "path-browserify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimDaub/web3-input.git"
},
"keywords": [
"web3",
"bundle",
"size",
"ethereum",
"interaction",
"provider",
"small"
],
"author": "Tim Daubenschütz <[email protected]> (https://timdaub.github.io)",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/TimDaub/web3-input/issues"
},
"homepage": "https://github.com/TimDaub/web3-input#readme",
"dependencies": {
"@ficusjs/renderers": "3.1.0",
"@metamask/detect-provider": "1.2.0",
"assert": "2.0.0",
"buffer": "6.0.3",
"esbuild": "0.14.39",
"ficusjs": "3.3.0",
"stream-browserify": "3.0.0",
"web3-eth-abi": "1.7.3"
},
"devDependencies": {
"concurrently": "6.0.2",
"ssl-serve": "6.5.8",
"watch": "1.0.2"
}
}