-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.69 KB
/
package.json
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
{
"name": "node-ciphers",
"version": "1.1.7",
"description": "A lightweight Node.js library for AES and DES encryption, offering flexible encoding options, support for various cipher modes, and seamless integration with streams.",
"author": "kiki-kanri",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kiki-kanri/node-ciphers.git"
},
"keywords": [
"3des",
"aes",
"aes ccm",
"aes ctr",
"aes gcm",
"cbc",
"cfb",
"cfb1",
"cfb8",
"cipher",
"decrypt",
"des",
"ecb",
"encrypt",
"json decrypt",
"json encrypt",
"ofb"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"./dist",
"./src"
],
"engines": {
"node": ">=18.12.1"
},
"scripts": {
"build": "ts-project-builder ./src/index.ts --clean --preserve-modules --sourcemaps",
"bumplog": "changelogen --bump",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepack": "pnpm run build",
"release": "pnpm run lint && pnpm run build && pnpm run test && changelogen --push --release && npm publish",
"test": "cross-env NODE_OPTIONS=--openssl-legacy-provider jest --coverage"
},
"dependencies": {
"type-fest": "^4.31.0"
},
"devDependencies": {
"@kikiutils/changelogen": "^0.7.0",
"@kikiutils/eslint-config": "^0.7.3",
"@kikiutils/tsconfigs": "^3.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-project-builder": "^3.4.0",
"tslib": "^2.8.1"
}
}