-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.89 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"author": "Buidler Labs Developers <devs@buidlerlabs.com>",
"description": "The Hedera unofficial, high-level 'stratospheric' SDK for JS consumption",
"engines": {
"node": ">=14.8"
},
"exports": {
".": {
"require": "./lib.cjs/index.cjs",
"import": "./lib.esm/index.mjs"
},
"./bundler-utils": {
"require": "./lib.cjs/compiler/ContractCompileResult.cjs",
"import": "./lib.esm/compiler/ContractCompileResult.mjs"
}
},
"files": [
"lib.cjs",
"lib.esm",
"types"
],
"main": "./lib.cjs/index.cjs",
"module": "./lib.esm/index.mjs",
"name": "@buidlerlabs/hashgraph-venin-js",
"scripts": {
"build:4-publish": "run-p build:cjs build:esm build:declarations",
"build:cjs": "babel --env-name cjs lib --extensions .ts --out-dir lib.cjs --out-file-extension .cjs",
"build:esm": "babel --env-name esm lib --extensions .ts --out-dir lib.esm --source-maps --out-file-extension .mjs",
"build:declarations": "tsc",
"clean": "run-s clean:cjs clean:esm clean:declarations",
"clean:cjs": "rm -fr lib.cjs",
"clean:declarations": "rm -fr types",
"clean:esm": "rm -fr lib.esm",
"lint": "eslint . --ext ts",
"publish:npm": "run-s clean build:4-publish && npm publish --access public",
"test": "run-s test:node test:jsdom",
"test:ci": "run-s lint test",
"test:node": "jest --config=jest.node.config.cjs",
"test:node-previewnet": "PORTAL_NETWORK=previewnet node ./script/test-online.mjs",
"test:node-testnet": "PORTAL_NETWORK=testnet node ./script/test-online.mjs",
"test:jsdom": "jest --config=jest.web.config.cjs"
},
"keywords": [
"Hedera",
"Hashgraph",
"Smart Contracts"
],
"license": "MIT",
"dependencies": {
"@ethersproject/abi": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"dotenv": "^10.0.0",
"solc": "0.8.9",
"traverse": "0.6.6",
"tslib": "^2.3.1",
"winston": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.16.7",
"@openzeppelin/contracts": "^4.4.2",
"@peculiar/webcrypto": "^1.3.3",
"@types/estree": "^0.0.51",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"axios": "^0.26.0",
"babel-plugin-add-import-extension": "^1.6.0",
"core-js": "^3.20.3",
"elliptic": "^6.5.4",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.4.5",
"npm-run-all": "^4.1.5",
"prettier": "2.6.2",
"ts-jest": "^27.1.2",
"tweetnacl": "^1.0.3",
"typescript": "^4.5.5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/buidler-labs/hashgraph-venin-js"
},
"types": "./types/index.d.ts",
"version": "0.8.2",
"peerDependencies": {
"@hashgraph/sdk": "~2.47.0"
}
}