-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.26 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
76
77
78
79
80
81
82
83
{
"name": "@propero/security",
"version": "0.0.0",
"description": "safe and simple handling of passwords, tokens, etc",
"since": 2023,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts ."
},
"keywords": [],
"author": "Nora Reichwald <[email protected]> (https://reichwald.me/)",
"license": "MIT",
"url": "https://reichwald.me/",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@swc/jest": "^0.2.26",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"tslib": "^2.5.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
},
"optionalDependencies": {
"@node-rs/argon2": "^1.4.0",
"bcrypt": "^5.1.0",
"scrypt": "^6.0.3"
},
"exports": [
{
"node": "./",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
{
"node": "./password/adapter/argon2",
"import": "./dist/password/adapter/argon2.mjs",
"require": "./dist/password/adapter/argon2.js"
},
{
"node": "./password/adapter/bcrypt",
"import": "./dist/password/adapter/bcrypt.mjs",
"require": "./dist/password/adapter/bcrypt.js"
},
{
"node": "./password/adapter/scrypt",
"import": "./dist/password/adapter/scrypt.mjs",
"require": "./dist/password/adapter/scrypt.js"
},
{
"node": "./password/adapter/pbkdf2",
"import": "./dist/password/adapter/pbkdf2.mjs",
"require": "./dist/password/adapter/pbkdf2.js"
}
]
}