4NK_vault/sdk-client/package.json
4NK Dev fcb15afb88 Initial commit: 4NK Vault API with quantum-resistant encryption
- API server with ChaCha20-Poly1305 encryption
- TypeScript SDK client with full functionality
- Complete documentation in docs/
- Environment variable processing with composite variables
- HTTPS-only API on port 6666
- Storage structure for configuration files
- Tests and examples included

Features:
- Quantum-resistant encryption (ChaCha20-Poly1305)
- Variable substitution from .env files
- Comprehensive TypeScript SDK
- Full API documentation and specifications
- Deployment guides and security model
2025-09-29 21:02:18 +00:00

60 lines
1.3 KiB
JSON

{
"name": "@4nk/vault-sdk",
"version": "1.0.0",
"description": "SDK TypeScript pour l'API Vault 4NK - Service de fichiers chiffrés quantique résistant",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist"
},
"keywords": [
"vault",
"4nk",
"api",
"client",
"typescript",
"quantum-resistant",
"encryption",
"chacha20",
"poly1305"
],
"author": "4NK Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://git.4nkweb.com/4nk/vault-sdk.git"
},
"bugs": {
"url": "https://git.4nkweb.com/4nk/vault-sdk/issues"
},
"homepage": "https://git.4nkweb.com/4nk/vault-sdk#readme",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.0"
},
"dependencies": {
"node-fetch": "^3.3.2"
},
"peerDependencies": {
"typescript": ">=4.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}