-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.04 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@tigthor/kokocrypt",
"version": "2.1.0",
"description": "Enhanced Fortress Edition - Secure, quantum-resistant, high-performance encryption package",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"require": "./dist/browser/index.js",
"default": "./dist/browser/index.js"
},
"./kafka": {
"types": "./dist/kafka/index.d.ts",
"require": "./dist/kafka/index.js",
"default": "./dist/kafka/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest --runInBand",
"bench": "ts-node src/cli/bench.ts",
"prepublishOnly": "npm run build && npm test && npm run lint:check",
"pub": "npm publish --access public",
"clean": "rm -rf ./lib/",
"lint": "eslint src test --fix",
"prepare": "husky",
"typecheck": "tsc -p tsconfig.eslint.json --noEmit",
"coverage": "jest --coverage",
"lint:check": "eslint src test"
},
"repository": {
"type": "git",
"url": "https://github.com/tigthor/kokocrypt.git"
},
"license": "MIT",
"author": {
"name": "Tigthor"
},
"engines": {
"node": ">=18.0"
},
"keywords": [
"encryption",
"security",
"crypto",
"nestjs",
"xchacha20",
"poly1305",
"noise-protocol",
"ed25519"
],
"dependencies": {
"libsodium-wrappers": "^0.7.13",
"sodium-native": "^5.0.1"
},
"devDependencies": {
"@nestjs/common": "^11.1.0",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.0",
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/microservices": "^11.1.0",
"@nestjs/testing": "^11.1.0",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/libsodium-wrappers": "^0.7.13",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"axios": "^1.9.0",
"body-parser": "^2.2.0",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^18.2.2",
"eslint-plugin-prettier": "^5.1.2",
"express": "^5.1.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"kafkajs": "^2.2.4",
"lint-staged": "^17.2.0",
"prettier": "^3.1.1",
"rxjs": "^7.8.1",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.65.0"
},
"peerDependencies": {
"@nestjs/common": ">=10.0.0 <12.0.0",
"@nestjs/config": ">=3.0.0 <5.0.0",
"@nestjs/event-emitter": ">=2.0.0 <4.0.0",
"@nestjs/microservices": ">=10.0.0 <12.0.0",
"kafkajs": "^2.2.4",
"rxjs": "^7.8.1"
},
"peerDependenciesMeta": {
"@nestjs/event-emitter": {
"optional": true
},
"@nestjs/microservices": {
"optional": true
},
"kafkajs": {
"optional": true
}
},
"overrides": {
"brace-expansion": "^5.0.8"
}
}