-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.7 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.7 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
{
"name": "@useorbis/db-sdk",
"version": "0.0.60-alpha",
"description": "Orbis' Typescript SDK for building open-data experiences.",
"keywords": [
"web3",
"database",
"open-data",
"library",
"orbis"
],
"homepage": "https://github.com/OrbisWeb3/db-sdk#readme",
"repository": {
"type": "git",
"url": "https://github.com/OrbisWeb3/db-sdk.git"
},
"bugs": "https://github.com/OrbisWeb3/db-sdk/issues",
"author": {
"name": "Orbis",
"url": "https://github.com/OrbisWeb3"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"format": "prettier . --write",
"build": "npm run clean && tsc --project tsconfig.json",
"typecheck": "tsc --noEmit",
"tsn": "ts-node-esm"
},
"files": [
"dist/*"
],
"exports": {
".": "./dist/index.js",
"./query": "./dist/querybuilder/index.js",
"./operators": "./dist/querybuilder/statements/operators.js",
"./auth": "./dist/auth/index.js",
"./util": "./dist/util/index.js"
},
"devDependencies": {
"@types/node": "^20.2.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@ceramicnetwork/http-client": "^5.16.0",
"@ceramicnetwork/stream-model": "^4.15.0",
"@ceramicnetwork/stream-model-instance": "^4.15.0",
"@ceramicnetwork/streamid": "^5.4.0",
"@didtools/cacao": "^2.0.0",
"@noble/hashes": "^1.3.1",
"@stablelib/random": "^1.0.2",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"did-session": "^2.0.1",
"dids": "^4.0.3",
"uint8arrays": "^4.0.3"
}
}