urchin-vault 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +217 -0
- package/dist/cli.js +1206 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/auth.js +111 -0
- package/dist/commands/auth.js.map +1 -0
- package/dist/commands/config.js +53 -0
- package/dist/commands/config.js.map +1 -0
- package/dist/commands/files.js +406 -0
- package/dist/commands/files.js.map +1 -0
- package/dist/commands/keys.js +159 -0
- package/dist/commands/keys.js.map +1 -0
- package/dist/lib/cifer.js +190 -0
- package/dist/lib/cifer.js.map +1 -0
- package/dist/lib/storage.js +108 -0
- package/dist/lib/storage.js.map +1 -0
- package/dist/lib/store.js +49 -0
- package/dist/lib/store.js.map +1 -0
- package/dist/lib/ui.js +250 -0
- package/dist/lib/ui.js.map +1 -0
- package/package.json +65 -0
- package/urchin.png +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "urchin-vault",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Quantum-encrypted file vault — encrypt with CIFER (ML-KEM-768 + AES-256-GCM), store on Filecoin/IPFS or locally",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Mickael Canu <mickael@capsule-corp.io>",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/capsule-corp-ternoa/urchin"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/capsule-corp-ternoa/urchin#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/capsule-corp-ternoa/urchin/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"encryption",
|
|
18
|
+
"quantum-resistant",
|
|
19
|
+
"post-quantum",
|
|
20
|
+
"ML-KEM-768",
|
|
21
|
+
"CIFER",
|
|
22
|
+
"filecoin",
|
|
23
|
+
"ipfs",
|
|
24
|
+
"storacha",
|
|
25
|
+
"vault",
|
|
26
|
+
"cli",
|
|
27
|
+
"web3",
|
|
28
|
+
"decentralized-storage"
|
|
29
|
+
],
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=20.0.0"
|
|
32
|
+
},
|
|
33
|
+
"bin": {
|
|
34
|
+
"urchin": "./dist/cli.js"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"urchin.png",
|
|
39
|
+
"README.md",
|
|
40
|
+
"LICENSE"
|
|
41
|
+
],
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsc",
|
|
44
|
+
"dev": "tsc --watch",
|
|
45
|
+
"start": "node dist/cli.js",
|
|
46
|
+
"prepublishOnly": "npm run build"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@noble/ed25519": "^2.1.0",
|
|
50
|
+
"boxen": "^8.0.1",
|
|
51
|
+
"chalk": "^5.3.0",
|
|
52
|
+
"cifer-sdk": "^0.4.1",
|
|
53
|
+
"cli-table3": "^0.6.5",
|
|
54
|
+
"commander": "^13.0.0",
|
|
55
|
+
"figures": "^6.1.0",
|
|
56
|
+
"gradient-string": "^3.0.0",
|
|
57
|
+
"inquirer": "^12.0.0",
|
|
58
|
+
"inquirer-file-selector": "^1.0.1",
|
|
59
|
+
"ora": "^8.0.0"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@types/node": "^22.0.0",
|
|
63
|
+
"typescript": "^5.6.0"
|
|
64
|
+
}
|
|
65
|
+
}
|
package/urchin.png
ADDED
|
Binary file
|