-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.08 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
84
85
86
87
{
"name": "hollowdb-client",
"description": "HollowDB Client",
"version": "0.2.5",
"author": "FirstBatch Team <[email protected]>",
"contributors": [
"Faruk Can Özkan <[email protected]>",
"Erhan Tezcan <[email protected]>"
],
"homepage": "https://github.com/firstbatchxyz/hollowdb-client#readme",
"license": "MIT",
"scripts": {
"prebuild": "yarn clean:lib && yarn lint",
"build": "parcel build",
"test": "jest",
"clean": "gts clean",
"clean:lib": "rimraf ./lib",
"lint": "gts lint",
"format": "prettier --write './src/**/*.ts'",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint && yarn build",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"yalc:publish": "yarn build && yalc publish --push"
},
"files": [
"lib/",
"LICENSE",
"README.md"
],
"type": "module",
"source": "src/index.ts",
"types": "lib/index.d.ts",
"cjs": "lib/index.cjs",
"mjs": "lib/index.mjs",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs",
"default": "./lib/index.mjs"
},
"targets": {
"cjs": {
"outputFormat": "commonjs",
"isLibrary": true,
"context": "node"
},
"mjs": {
"outputFormat": "esmodule",
"isLibrary": true,
"context": "node"
}
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"snarkjs": "^0.7.0",
"@parcel/packager-ts": "2.9.3",
"@parcel/transformer-typescript-tsc": "^2.9.3",
"@parcel/transformer-typescript-types": "2.9.3",
"@types/jest": "^29.5.3",
"@types/node": "^14.11.2",
"gts": "^5.2.0",
"hollowdb-prover": "^0.1.4",
"jest": "^29.6.1",
"parcel": "^2.9.3",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "~4.7.0"
},
"keywords": [
"hollowdb",
"key-value store",
"storage",
"database",
"zksnark",
"blockchain",
"smart-contracts",
"arweave",
"anonymous",
"smartweave",
"circom",
"warp-contracts",
"zero-knowledge"
]
}