-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.83 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.83 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
{
"name": "@node-rs/argon2",
"version": "2.0.2",
"description": "RustCrypto: Argon2 binding for Node.js",
"keywords": [
"argon2",
"argon2-password",
"crypto",
"encryption",
"hash",
"hashing",
"password",
"secure",
"verify"
],
"homepage": "https://github.com/napi-rs/node-rs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/napi-rs/node-rs.git"
},
"files": [
"browser.js",
"index.d.ts",
"index.js"
],
"main": "index.js",
"browser": "browser.js",
"types": "index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"artifacts": "napi artifacts -d ../../artifacts",
"bench": "cross-env NODE_ENV=production node --import @oxc-node/core/register benchmark/argon2.ts",
"build": "oxnode ./build.ts --platform --release",
"build:debug": "oxnode ./build.ts --platform",
"prepublishOnly": "napi prepublish",
"version": "napi version"
},
"devDependencies": {
"@napi-rs/cli": "^3.5.1",
"@oxc-node/cli": "^0.1.0",
"@oxc-node/core": "^0.1.0",
"argon2": "^0.44.0",
"cross-env": "^10.1.0",
"tinybench": "^6.0.0"
},
"napi": {
"binaryName": "argon2",
"targets": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"i686-pc-windows-msvc",
"armv7-linux-androideabi",
"wasm32-wasip1-threads"
],
"wasm": {
"browser": {
"fs": false
}
}
},
"engines": {
"node": ">= 10"
}
}