-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 926 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 926 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
{
"name": "@redexinus/string-hash",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "1.0.0",
"engines": {
"node": ">=20.18.0"
},
"license": "MIT",
"keywords": ["password", "hash", "string-hash", "pbkdf2"],
"description": "A simplest, zero-dependency hashing library based on crypto:pbkdf2.",
"author": "RedExinus Team",
"contributors": [
{
"name": "Nikita Denisov",
"url": "https://github.com/EmptyChapter"
}
],
"homepage": "https://github.com/RedExinus/string_hash#readme",
"repository": {
"type": "github",
"url": "https://github.com/RedExinus/string_hash.git"
},
"bugs": {
"url": "https://github.com/RedExinus/string_hash/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "tsc --build"
},
"devDependencies": {
"@types/node": "^22.9.0",
"typescript": "^5.6.3"
}
}