forked from arpitkhandelwal12/ZerithDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1 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
{
"name": "zerithdb-auth",
"version": "0.2.0",
"description": "Public/private key identity management for ZerithDB — no passwords",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist"
},
"dependencies": {
"@noble/ed25519": "^2.1.0",
"@noble/hashes": "^2.2.0",
"zerithdb-core": "workspace:*",
"multiformats": "^13.1.0"
},
"devDependencies": {
"zerithdb-eslint-config": "workspace:*",
"zerithdb-tsconfig": "workspace:*",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"files": [
"dist",
"src"
]
}