-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.94 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
{
"name": "snarkdb",
"version": "1.0.0",
"description": "snarkDB is a tool for exposing any RDBMS to zero knowledge SQL queries.",
"main": "dist/cli/main.js",
"files": [
"dist"
],
"scripts": {
"build": "babel src -d dist --copy-files",
"dev": "yarn build --verbose --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node . start",
"postinstall": "patch-package; cp patches/aleo_wasm.wasm node_modules/@aleohq/wasm/dist/assets/aleo_wasm.wasm; npm run build;"
},
"author": "",
"license": "ISC",
"bin": {
"main": "./dist/cli/main.js"
},
"dependencies": {
"@aleohq/sdk": "^0.6.9",
"@aleohq/wasm": "^0.6.9",
"@chainsafe/libp2p-gossipsub": "^13.0.0",
"@chainsafe/libp2p-noise": "^15.0.0",
"@chainsafe/libp2p-yamux": "^6.0.2",
"@helia/ipns": "^6.0.1",
"@helia/mfs": "^3.0.1",
"@helia/unixfs": "^3.0.1",
"@libp2p/bootstrap": "^10.0.16",
"@libp2p/crypto": "^4.0.3",
"@libp2p/identify": "^1.0.15",
"@libp2p/peer-id-factory": "^4.0.7",
"@libp2p/tcp": "^9.0.16",
"babel-plugin-import-directory": "^1.1.0",
"bech32": "^2.0.0",
"bigint-crypto-utils": "^2.5.3",
"bip39": "^3.1.0",
"blockstore-fs": "^1.1.10",
"bs58": "^5.0.0",
"colors": "^1.4.0",
"crypto-shuffle": "^1.0.1",
"datastore-fs": "^9.1.8",
"dotenv": "^16.3.1",
"fs.promises": "^0.1.2",
"fs.promises.exists": "^1.1.4",
"helia": "^4.0.2",
"jsdoc": "^4.0.2",
"json-bigint": "^1.0.0",
"libp2p": "^1.2.4",
"mysql": "^2.18.1",
"node-fetch": "^3.3.2",
"node-sql-parser": "^4.11.0",
"patch-package": "^8.0.0",
"typeorm": "^0.3.20",
"uint8arrays": "^5.0.2",
"yargs": "13.2"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@types/mime": "^3.0.2",
"@types/node": "^20.8.6",
"babel-plugin-module-resolver": "^5.0.0"
},
"type": "module"
}