forked from Irys-xyz/arweave-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·83 lines (83 loc) · 2.54 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
{
"name": "@bundlr-network/client",
"version": "0.7.15",
"description": "JS client for Bundlr nodes",
"repository": "https://github.com/Bundlr-Network/js-client.git",
"author": "Bundlr Network",
"license": "Apache-2.0",
"main": "./build/index.js",
"browser": "./build/web/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*.js",
"build/**/*.js.map",
"build/**/*.ts"
],
"scripts": {
"dev:build": "rm -rf build && tsc -p tsconfig.json && chmod +x ./build/node/cli.js && yarn run copy-types",
"prod:build": "yarn run dev:build && webpack && rm ./build/web/bundle.js.LICENSE.txt",
"lint:check": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"copy-types": "cp src/common/types.d.ts build/common && cp src/node/types.d.ts build/node && cp src/web/types.d.ts build/web",
"watch": "tsc --watch -p tsconfig.json & webpack --watch"
},
"bin": {
"bundlr": "./build/node/cli.js"
},
"dependencies": {
"@solana/wallet-adapter-base": "^0.9.2",
"@solana/web3.js": "^1.36.0",
"@supercharge/promise-pool": "^2.1.0",
"algosdk": "^1.13.1",
"arbundles": "^0.6.19",
"arweave": "^1.11.4",
"async-retry": "^1.3.3",
"axios": "^0.25.0",
"base64url": "^3.0.1",
"bignumber.js": "^9.0.1",
"bs58": "^4.0.1",
"commander": "^8.2.0",
"csv": "^6.0.5",
"ethers": "^5.5.1",
"inquirer": "^8.2.0",
"js-sha256": "^0.9.0",
"mime-types": "^2.1.34",
"near-api-js": "^0.44.2",
"near-seed-phrase": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@types/async-retry": "^1.4.3",
"@types/base64url": "^2.0.0",
"@types/jest": "^27.0.2",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"crypto-browserify": "^3.12.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.2",
"inspectpack": "^4.7.1",
"jest": "^27.2.4",
"longjohn": "^0.2.12",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"serve": "^13.0.2",
"stream-browserify": "^3.0.0",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"v8-profiler-next": "^1.8.0",
"webpack": "^5.65.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
}
}