-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.32 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
{
"name": "argon2-native",
"version": "1.0.1",
"description": "An Argon2 library for Node",
"keywords": [
"argon2",
"crypto",
"encryption",
"hashing",
"password"
],
"homepage": "https://github.com/KaelWD/node-argon2#readme",
"bugs": {
"url": "https://github.com/KaelWD/node-argon2/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KaelWD/node-argon2.git"
},
"license": "MIT",
"author": "Kael Watts-Deuchar <kaelwd@gmail.com>",
"type": "module",
"main": "dist/argon2.js",
"types": "dist/argon2.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/argon2.js",
"require": "./dist/argon2.cjs"
}
},
"scripts": {
"lint": "biome check . && tsc --noEmit --pretty",
"lint:fix": "biome check . --write",
"test": "vitest",
"build": "tsdown"
},
"dependencies": {
"@phc/format": "^1.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.1",
"@tsconfig/node24": "24.0.1",
"@types/node": "24.9.1",
"@types/phc__format": "^1.0.1",
"tsdown": "^0.15.11",
"typescript": "5.9.3",
"vitest": "^4.0.4"
},
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=24.7.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/node-argon2"
}
}