-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (40 loc) · 1000 Bytes
/
package.json
File metadata and controls
41 lines (40 loc) · 1000 Bytes
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
{
"name": "@uswriting/bcrypt",
"version": "1.0.3",
"description": "A modern, secure implementation of bcrypt for JavaScript/TypeScript",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build:esbuild": "bun run build.ts",
"build:types": "tsc --emitDeclarationOnly --outDir ./dist",
"build": "npm run clean && npm run build:esbuild && npm run build:types",
"test": "vitest"
},
"type": "module",
"peerDependencies": {
"typescript": "5.7.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^2.4.3",
"vitest": "^3.0.5",
"esbuild": "^0.24.2"
},
"repository": "https://github.com/uswriting/bcrypt/",
"license": "MIT",
"bugs": {
"url": "https://github.com/uswriting/bcrypt/issues",
"email": "code@uswriting.co"
},
"dependencies": {
}
}