-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
{
"name": "@identikey/tools",
"version": "0.0.1",
"private": false,
"type": "module",
"description": "Tools for digital sovereignty - identity, key management, encrypted storage, etc",
"main": "./dist/index.js",
"files": [
"dist"
],
"author": "Duke Jones <duke@identikey.io>",
"license": "MIT",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"bin": {
"identikey": "./dist/cli/index.js"
},
"scripts": {
"build": "tsdown",
"ikey": "bun run dist/cli/index.js",
"dev": "tsdown --watch",
"test": "bun test src/ tests/security/ tests/benchmarks/",
"test:unit": "bun test src/ tests/security/ tests/benchmarks/",
"test:e2e": "bun test tests/e2e/",
"test:all": "bun test",
"test:cli": "bun test src/cli/ tests/cli/",
"test:coverage": "bun test --coverage",
"test:security": "bun test tests/security/",
"test:benchmarks": "bun test tests/benchmarks/",
"lint": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "^1.3.1",
"@types/node": "^24.9.1",
"tsdown": "^0.15.9"
},
"dependencies": {
"@noble/hashes": "^1.5.0",
"bs58": "^6.0.0",
"cbor": "^10.0.11",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.0.0",
"minio": "^8.0.6",
"ora": "^8.0.1",
"tweetnacl": "^1.0.3",
"zod": "^4.1.12"
}
}