-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
69 lines (69 loc) · 1.83 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
68
69
{
"name": "argon2",
"version": "0.41.1",
"description": "An Argon2 library for Node",
"keywords": ["argon2", "crypto", "encryption", "hashing", "password"],
"homepage": "https://github.com/ranisalt/node-argon2#readme",
"bugs": {
"url": "https://github.com/ranisalt/node-argon2/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ranisalt/node-argon2.git"
},
"license": "MIT",
"author": "Ranieri Althoff <[email protected]>",
"type": "commonjs",
"main": "argon2.cjs",
"types": "argon2.d.cts",
"files": [
"argon2.cpp",
"argon2.d.cts",
"argon2.d.cts.map",
"binding.gyp",
"argon2/CHANGELOG.md",
"argon2/LICENSE",
"argon2/include/",
"argon2/src/blake2/",
"argon2/src/argon2.c",
"argon2/src/core.c",
"argon2/src/core.h",
"argon2/src/encoding.c",
"argon2/src/encoding.h",
"argon2/src/opt.c",
"argon2/src/ref.c",
"argon2/src/thread.c",
"argon2/src/thread.h",
"prebuilds/**/*.node"
],
"binary": {
"napi_versions": [8]
},
"scripts": {
"build": "prebuildify --napi --strip --tag-armv --tag-libc",
"install": "node-gyp-build",
"lint": "biome check .",
"prepare": "tsc",
"test": "node --test test.cjs"
},
"dependencies": {
"@phc/format": "^1.0.0",
"node-addon-api": "^8.2.2",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.9.1",
"node-gyp": "10.2.0",
"prebuildify": "6.0.1",
"typescript": "5.6.3"
},
"packageManager": "[email protected]+sha512.65a9c38a8172948f617a53619762cd77e12b9950fe1f9239debcb8d62c652f2081824b986fee7c0af6c0a7df615becebe4bf56e17ec27214a87aa29d9e038b4b",
"engines": {
"node": ">=16.17.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/node-argon2"
}
}