This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
48 lines (48 loc) · 1.82 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
{
"name": "bistrot",
"description": "A CLI client and also an API library for RumSystem.net.",
"version": "7.6.14",
"private": false,
"homepage": "https://github.com/Press-One/bistrot",
"main": "index.mjs",
"test": "test.mjs",
"type": "module",
"bin": {
"bistrot": "bin/bistrot.mjs"
},
"engines": {
"node": ">=18.x"
},
"scripts": {
"start": "node --no-deprecation bin/bistrot.mjs",
"debug": "node --inspect --trace-warnings debug.mjs",
"test": "node --inspect --trace-warnings test.mjs",
"updep": "npx npm-check-updates -u && npm install",
"gitsync": "( git commit -am \"Released @ `date`\" || true ) && git pull && git push",
"readme": "cat template.md > README.md && echo '\n```markdown' >> README.md && ./bin/bistrot.mjs --json >> README.md && echo '```' >> README.md",
"build": "npm run updep && ( git commit -am 'update dependencies' || true ) && node build.mjs && npm run readme",
"pub": "npm run build && npm run gitsync",
"beta": "npm publish --tag beta",
"docker-build": "docker build --no-cache -t pressone/bistrot .",
"docker-push": "docker push pressone/bistrot",
"docker-publish": "npm run docker-build && npm run docker-push"
},
"author": "Leask Wong <i@leaskh.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Press-One/bistrot.git"
},
"dependencies": {
"@truffle/hdwallet-provider": "^2.1.13",
"abi-decoder": "github:Leask/abi-decoder",
"elliptic": "^6.5.4",
"ethereumjs-util": "^7.1.5",
"keythereum-pure-js": "^1.1.9",
"secp256k1": "^5.0.0",
"solc": "0.8.21",
"table": "^6.8.1",
"utilitas": "^1995.0.43",
"web3": "^4.0.3"
}
}