-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.21 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
{
"name": "saltpepperpass-next",
"version": "1.0.1",
"description": "saltpepperpass-next is a Next.js package that securely hashes passwords using bcrypt with customizable salt length, pepper text, and hashing rounds. It enhances password security by salting and peppering before hashing, making it ideal for backend applications.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"build": "tsup src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dewruwan95/saltpepperpass-next.git"
},
"keywords": [
"passwordhashing",
"bcrypthashing",
"salting",
"peppering",
"bcrypt"
],
"author": "Idea Graphix",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dewruwan95/saltpepperpass-next/issues"
},
"homepage": "https://github.com/Dewruwan95/saltpepperpass-next#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"esbuild": "^0.25.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"dependencies": {
"bcrypt": "^5.1.1"
}
}