-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 907 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 907 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
42
43
44
45
46
47
48
{
"name": "felixhash",
"version": "2.1.0",
"description": "A custom SHA256, MD5, DJB2 cryptographic hashing class implementation in TypeScript.",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc -b"
},
"exports": {
".": {
"import": "./index.js",
"require": "./index.js"
}
},
"keywords": [
"SHA256",
"MD5",
"Djb2",
"crypto",
"hashing",
"typescript",
"web3",
"blockchain"
],
"author": "Debayan",
"license": "ISC",
"dependencies": {
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/node": "^22.5.5"
},
"files": [
"index.js",
"index.ts",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/felixoder/cryptohash.git"
},
"bugs": {
"url": "https://github.com/felixoder/cryptohash/issues"
}
}