This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.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
{
"name": "@artbycity/bundledao-client",
"version": "0.1.9",
"description": "BundleDAO Arweave ANS-104 Client",
"keywords": [
"arweave",
"deso",
"ans-104",
"bundledao"
],
"author": "Jim Toth <jim@artby.city>",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://gitlab.com/art-by-city/bundledao-client/issues"
},
"homepage": "https://gitlab.com/art-by-city/bundledao-client#readme",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/art-by-city/bundledao-client.git"
},
"main": "./dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && tsc",
"test": "mocha",
"version": "npm run build"
},
"devDependencies": {
"@types/bs58check": "^2.1.0",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-spies": "^1.0.3",
"@types/elliptic": "^6.4.14",
"@types/hdkey": "^2.0.1",
"@types/jsdom": "^20.0.1",
"@types/memoizee": "^0.4.8",
"@types/mocha": "^10.0.0",
"@types/secp256k1": "^4.0.3",
"@types/sha256": "^0.2.0",
"base64url": "^3.0.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"ethers": "^5.7.2",
"jsdom": "^21.1.0",
"mocha": "^10.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"arbundles": "^0.6.0",
"bip39": "^3.0.4",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"hdkey": "github:deso-protocol/hdkey",
"memoizee": "^0.4.15",
"sha256": "^0.2.0"
}
}