forked from Irys-xyz/arbundles
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.36 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.36 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
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
{
"name": "arbundles",
"version": "0.6.9",
"description": "Arweave bundling library",
"author": "Josh Benaron <joshbenaron@gmail.com>",
"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": {
"@textury/ardb": "^1.1.3",
"@types/deep-equal": "^1.0.1",
"@types/jest": "~26.0.23",
"@types/node": "^16.3.3",
"@typescript-eslint/eslint-plugin": "~4.25.0",
"@typescript-eslint/parser": "~4.25.0",
"deep-equal": "^2.0.5",
"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": {
"@akiroz/size-chunker-stream": "^0.0.1",
"@toruslabs/eccrypto": "^1.1.7",
"@types/axios": "^0.14.0",
"@types/browser-or-node": "^1.3.0",
"@types/bs58": "^4.0.1",
"@types/multistream": "^2.1.1",
"@types/secp256k1": "^4.0.3",
"@types/tmp": "^0.2.1",
"arweave": "^1.10.18",
"arweave-stream-tx": "^1.1.0",
"avro-js": "^1.11.0",
"axios": "^0.21.3",
"base64url": "^3.0.1",
"bs58": "^4.0.1",
"combined-stream2": "^1.1.2",
"curve25519-js": "^0.0.4",
"ethers": "^5.5.1",
"keccak256": "^1.0.3",
"multistream": "^4.1.0",
"noble-ed25519": "^1.2.6",
"secp256k1": "^4.0.2",
"starkbank-ecdsa": "^1.1.2",
"stream-chunker": "^1.2.8",
"tmp": "^0.2.1",
"tmp-promise": "^3.0.2",
"tslib": "^2.3.0"
}
}