forked from Irys-xyz/arbundles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·75 lines (75 loc) · 2.19 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
{
"name": "arseeding-arbundles",
"version": "0.6.27",
"description": "Arweave bundling library",
"author": "Josh Benaron <[email protected]>",
"license": "Apache-2.0",
"main": "src/index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"src/**/*.js",
"src/**/*.js.map",
"src/**/*.d.ts",
"stream/**/*.js",
"stream/**/*.js.map",
"stream/**/*.d.ts",
"file/**/*.js",
"file/**/*.js.map",
"file/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"lint": "eslint ./src -c ./.eslintrc.json --ext .ts,.tsx",
"test": "jest --coverage",
"husky-install": "(node -e \"if (!require('fs').existsSync(__dirname + '/.git')) {process.exit(1)}\" && husky install || true)",
"ensure-build": "(node -e \"if (!require('fs').existsSync(__dirname + '/build')) {process.exit(1)}\" || yarn run build)",
"prepack": "yarn run ensure-build",
"prepare": "yarn run ensure-build"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/jest": "~26.0.23",
"@types/multistream": "^2.1.1",
"@types/node": "^17.0.10",
"@types/secp256k1": "^4.0.3",
"@typescript-eslint/eslint-plugin": "~4.25.0",
"@typescript-eslint/parser": "~4.25.0",
"eslint": "~7.27.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.3.6",
"husky": "^7.0.0",
"jest": "~27.0.3",
"object-sizeof": "^1.6.1",
"perf_hooks": "^0.0.1",
"prettier": "~2.3.0",
"pretty-quick": "^3.1.2",
"rimraf": "~3.0.2",
"ts-jest": "~27.0.2",
"tsutils": "~3.21.0",
"typescript": "~4.3.2"
},
"dependencies": {
"@noble/ed25519": "^1.6.1",
"@randlabs/myalgo-connect": "^1.1.2",
"@solana/wallet-adapter-base": "^0.9.2",
"algosdk": "^1.13.1",
"arweave": "=1.11.8",
"arweave-stream-tx": "^1.1.0",
"avsc": "https://github.com/Bundlr-Network/avsc#csp-fixes",
"axios": "^0.21.3",
"base64url": "^3.0.1",
"bs58": "^4.0.1",
"crypto-browserify": "^3.12.0",
"ethers": "^5.5.1",
"keccak": "^3.0.2",
"multistream": "^4.1.0",
"process": "^0.11.10",
"secp256k1": "^4.0.2",
"tmp-promise": "^3.0.2",
"ts-node": "^10.5.0",
"tslib": "^2.3.0"
}
}