-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.74 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
66
{
"name": "@orbisclub/sdk",
"version": "0.0.4",
"description": "Orbis' Typescript SDK for building open-social experiences.",
"keywords": [
"web3",
"social",
"open-social",
"library",
"orbis"
],
"homepage": "https://github.com/OrbisWeb3/sdk#readme",
"repository": {
"type": "git",
"url": "https://github.com/OrbisWeb3/sdk.git"
},
"bugs": "https://github.com/OrbisWeb3/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": {
"generate:schemas": "ts-node-esm ./cli/fetchSchemas.ts",
"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",
"./auth": "./dist/auth/index.js",
"./media": "./dist/media/index.js",
"./schemas": "./dist/types/primitives/index.js",
"./util": "./dist/util/index.js"
},
"devDependencies": {
"@types/node": "^20.2.5",
"json-schema-to-typescript": "^13.0.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@ceramicnetwork/http-client": "^2.22.0",
"@ceramicnetwork/stream-tile": "^2.21.0",
"@didtools/cacao": "^2.0.0",
"@lit-protocol/lit-node-client": "^2.2.21",
"@lit-protocol/types": "^2.2.33",
"@noble/hashes": "^1.3.1",
"@stablelib/random": "^1.0.2",
"@supabase/supabase-js": "^2.24.0",
"did-session": "^2.0.1",
"dids": "^4.0.3",
"uint8arrays": "^4.0.3"
}
}