-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "bcrypt-edge",
"version": "0.1.0",
"type": "module",
"description": "Bcrypt implementation specifically for web workers",
"repository": {
"type": "git",
"url": "https://github.com/bruceharrison1984/bcrypt-edge"
},
"keywords": [
"encryption",
"bcrypt",
"edge",
"cloudflare"
],
"author": {
"name": "Bruce Harrison"
},
"scripts": {
"build": "unbuild",
"test": "vitest",
"lint": "eslint"
},
"exports": {
".": {
"import": "./dist/bcrypt-edge.mjs"
}
},
"main": "./dist/bcrypt-edge.mjs",
"types": "./dist/bcrypt-edge.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@cloudflare/workers-types": "^4.20240423.0",
"@types/bcrypt": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"bcrypt": "^5.1.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vitest": "^1.5.3",
"vitest-environment-miniflare": "^2.14.2"
}
}