-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.6 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
{
"name": "cf-workers-hash",
"version": "1.0.3",
"description": "A simple hash function for Cloudflare Workers",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "tsup && jest",
"build": "tsup",
"example": "cd example && pnpm install && wrangler dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pigri/cf-workers-hash.git"
},
"keywords": [
"hasher",
"cloudflare",
"hash",
"crypto",
"cf",
"workers",
"cf-workers",
"cloudflare-workers"
],
"devDependencies": {
"@cloudflare/workers-types": "4.20250129.0",
"@swc/core": "1.10.12",
"@types/bcryptjs": "2.4.6",
"@types/jest": "29.5.14",
"@types/node": "22.12.0",
"@types/xxhashjs": "0.2.4",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"jest": "29.7.0",
"jest-environment-miniflare": "2.14.4",
"pnpm": "latest",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"tsup": "8.3.6",
"typescript": "5.7.3",
"wrangler": "3.106.0"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"author": "David Papp <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pigri/cf-workers-hash/issues"
},
"homepage": "https://github.com/pigri/cf-workers-hash#readme",
"dependencies": {
"@aws-crypto/crc32": "5.2.0",
"@aws-crypto/crc32c": "5.2.0",
"bcryptjs": "2.4.3",
"js-sha3": "0.9.3",
"md6-hash": "1.0.0",
"whirlpool-hash": "1.1.6",
"xxhashjs": "0.2.2"
}
}