-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
87 lines (87 loc) · 2.16 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@node-rs/bcrypt",
"version": "1.10.7",
"description": "Rust bcrypt binding",
"keywords": [
"bcrypt",
"auth",
"password",
"authentication",
"encryption",
"crypto",
"N-API",
"napi-rs",
"node-rs"
],
"author": "LongYinan <[email protected]>",
"homepage": "https://github.com/napi-rs/node-rs",
"license": "MIT",
"main": "index.js",
"typings": "index.d.ts",
"browser": "browser.js",
"files": [
"index.js",
"index.d.ts",
"binding.js",
"binding.d.ts",
"browser.js",
"LICENSE",
"LICENSE.rust-bcrypt"
],
"napi": {
"binaryName": "bcrypt",
"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"
]
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/napi-rs/node-rs.git"
},
"scripts": {
"artifacts": "napi artifacts -d ../../artifacts",
"bench": "cross-env NODE_ENV=production node --import @oxc-node/core/register benchmark/bcrypt.ts",
"build": "napi build --platform --release --js binding.js --dts binding.d.ts",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish",
"version": "napi version"
},
"bugs": {
"url": "https://github.com/napi-rs/node-rs/issues"
},
"devDependencies": {
"@cwasm/openbsd-bcrypt": "^0.1.0",
"@cwasm/openwall-bcrypt": "^0.1.0",
"@napi-rs/cli": "^3.0.0-alpha.64",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cross-env": "^7.0.3",
"tinybench": "^3.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Brooooooklyn"
}
}