-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.32 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.32 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@empowered-humanity/crypto-toolkit",
"version": "1.0.0",
"description": "Secure-by-default cryptographic utilities — XChaCha20-Poly1305, Argon2id, Ed25519, X25519, JWT, NIST-compliant",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"te-crypto": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"SECURITY.md",
"sbom.json"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"test:vectors": "vitest run --config vitest.vectors.config.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"sbom": "node generate-sbom.js",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"cryptography",
"encryption",
"xchacha20",
"argon2id",
"ed25519",
"x25519",
"libsodium",
"password-hashing",
"digital-signatures",
"jwt",
"nist",
"security",
"aead",
"key-exchange"
],
"author": "Empowered Humanity <security@empoweredhumanity.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/empowered-humanity/crypto-toolkit.git"
},
"bugs": {
"url": "https://github.com/empowered-humanity/crypto-toolkit/issues"
},
"homepage": "https://github.com/empowered-humanity/crypto-toolkit#readme",
"dependencies": {
"sodium-native": "^4.0.0",
"jose": "^5.0.0",
"commander": "^12.0.0",
"chalk": "^5.3.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.7.0",
"vitest": "^2.0.0",
"@types/node": "^20.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./aead": {
"types": "./dist/core/aead.d.ts",
"default": "./dist/core/aead.js"
},
"./password": {
"types": "./dist/core/password.d.ts",
"default": "./dist/core/password.js"
},
"./signatures": {
"types": "./dist/asymmetric/ed25519.d.ts",
"default": "./dist/asymmetric/ed25519.js"
},
"./jwt": {
"types": "./dist/jwt/index.d.ts",
"default": "./dist/jwt/index.js"
}
}
}