-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.11 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
70
71
72
73
74
75
{
"name": "@cmmv/encryptor",
"version": "0.7.0",
"description": "Encryption module using elliptic curves (ECC) and AES-256-GCM for secure data encryption in CMMV and Node.js applications.",
"main": "./dist/cjs/main.js",
"module": "./dist/esm/main.js",
"types": "./dist/types/main.d.ts",
"exports": {
".": {
"import": "./dist/esm/main.js",
"require": "./dist/cjs/main.js"
}
},
"scripts": {
"build": "cmmv build",
"lint": "cmmv lint",
"release": "cmmv release",
"test": "vitest",
"prepare": "husky",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"keywords": [
"cmmv",
"framework",
"ecc",
"aes-256-gcm",
"elliptic curves"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cmmvio/cmmv-encryptor.git"
},
"author": "Andre Ferreira",
"license": "MIT",
"bugs": {
"url": "https://github.com/cmmvio/cmmv-encryptor/issues"
},
"homepage": "https://cmmv.io",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 18.18.0 || >= 20.0.0"
},
"lint-staged": {
"**/*.ts": [
"prettier --ignore-path ./.prettierignore --write"
]
},
"devDependencies": {
"@cmmv/cli": "^0.5.9",
"@cmmv/server": "^0.8.7",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-angular": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@tsconfig/node22": "^22.0.0",
"@types/elliptic": "^6.4.18",
"@types/node": "^22.13.4",
"conventional-changelog": "^6.0.0",
"conventional-changelog-cli": "^5.0.0",
"esbuild": "^0.25.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vitest": "^2.1.9"
},
"dependencies": {
"bip32": "5.0.0-rc.0",
"bip39": "^3.1.0",
"bs58": "^6.0.0",
"elliptic": "^6.6.1",
"tiny-secp256k1": "^2.2.3"
}
}