-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
{
"name": "@_koii/sdk",
"version": "2.4.21",
"description": "Koii SDK",
"main": "./node/node.js",
"browser": "./web/web.js",
"scripts": {
"bundle": "webpack --mode production",
"compile": "tsc --declaration",
"build": "webpack --mode production && tsc --declaration && cpy package.json README.md dist",
"test-bundle": "http-server -c-1 -o test/bundle",
"test": "jest --coverage",
"doc": "typedoc src/*",
"lint": "eslint --ext .ts,.tsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/koii-network/tools.git"
},
"author": "Koii Network",
"license": "ISC",
"bugs": {
"url": "https://github.com/koii-network/tools/issues"
},
"homepage": "https://github.com/koii-network/tools",
"dependencies": {
"@_koi/kohaku": "^1.1.1",
"@_koi/web3.js": "^0.0.6",
"@solana/web3.js": "^1.73.2",
"@vespaiach/axios-fetch-adapter": "^0.3.1",
"arweave": "^1.12.4",
"axios": "^0.27.2",
"bip39": "^3.1.0",
"bs58": "^5.0.0",
"dotenv": "^16.0.3",
"ed25519-hd-key": "^1.3.0",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.7.2",
"human-crypto-keys": "^0.1.4",
"lodash": "^4.17.21",
"pem-jwk": "^2.0.0",
"redis": "^4.6.5",
"smartweave": "^0.4.49"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@babel/types": "^7.21.2",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-jest": "^29.4.3",
"cpy-cli": "^4.2.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.1",
"jest": "^29.0.5",
"node-polyfill-webpack-plugin": "^2.0.1",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typedoc": "^0.23.26",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}