-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.91 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.91 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "argon2",
"version": "0.44.0",
"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"
},
"license": "MIT",
"author": "Ranieri Althoff <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ranisalt/node-argon2.git"
},
"binary": {
"napi_versions": [
8
]
},
"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"
],
"type": "commonjs",
"main": "argon2.cjs",
"types": "argon2.d.cts",
"scripts": {
"build": "prebuildify --napi --strip --tag-armv --tag-libc",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"install": "cross-env ZERO_AR_DATE=1 node-gyp-build",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "tsc",
"test": "node --test test.cjs"
},
"dependencies": {
"@phc/format": "^1.0.0",
"cross-env": "^10.1.0",
"node-addon-api": "^8.5.0",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"@tsconfig/node20": "20.1.9",
"@types/node": "24.10.12",
"node-gyp": "12.2.0",
"oxfmt": "0.35.0",
"oxlint": "1.50.0",
"prebuildify": "6.0.1",
"typescript": "5.9.3"
},
"engines": {
"node": ">=16.17.0"
},
"packageManager": "[email protected]",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/node-argon2"
}
}