forked from skalenetwork/bite-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 KB
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
{
"name": "@skalenetwork/bite",
"version": "0.8.0",
"description": "TS Library to interact with BITE protocol",
"homepage": "https://github.com/skalenetwork/bite.ts",
"license": "LGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "yarn clean && tsup --env.NODE_ENV production",
"build:dev": "yarn clean && tsup --env.NODE_ENV development",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"lint": "eslint ./src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint ./src --ext .ts --fix",
"version": "node -e \"console.log(require('./package.json').version);\""
},
"keywords": [
"SKALE",
"blockchain",
"BITE",
"threshold",
"cryptography",
"encryption"
],
"dependencies": {
"@ethereumjs/rlp": "10.0.0",
"@skalenetwork/t-encrypt": "0.7.0-develop.0",
"tslog": "^4.9.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"eslint": "^8.45.0",
"ethers": "^6.13.5",
"tsup": "^7.2.0",
"typescript": "^5.3.0"
}
}