-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.72 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
{
"name": "keeweb-native-modules",
"version": "0.0.1",
"description": "This repo contains native modules for [KeeWeb](https://keeweb.info).",
"main": "index.js",
"scripts": {
"build-x64-darwin": "electron-rebuild --arch=x64 --only=argon2,keytar,usb-detection,yubikey-chalresp,keyboard-auto-type,secure-enclave",
"build-x64-win32": "electron-rebuild --arch=x64 --only=argon2,keytar,usb-detection,yubikey-chalresp,keyboard-auto-type",
"build-x64-linux": "electron-rebuild --arch=x64 --only=argon2,keytar,usb-detection,yubikey-chalresp,keyboard-auto-type",
"build-ia32-win32": "electron-rebuild --arch=ia32 --only=argon2,keytar,usb-detection,yubikey-chalresp,keyboard-auto-type",
"build-arm64-darwin": "electron-rebuild --arch=arm64 --only=argon2,keytar,usb-detection,yubikey-chalresp,keyboard-auto-type,secure-enclave",
"build-arm64-win32": "electron-rebuild --arch=arm64 --only=argon2,keytar,usb-detection,yubikey-chalresp,keyboard-auto-type",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antelle/keeweb-native-modules.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/antelle/keeweb-native-modules/issues"
},
"homepage": "https://github.com/antelle/keeweb-native-modules#readme",
"devDependencies": {
"electron": "^12.0.0",
"electron-rebuild": "^2.3.5"
},
"optionalDependencies": {
"secure-enclave": "^0.4.1"
},
"dependencies": {
"argon2": "^0.27.2",
"keyboard-auto-type": "^0.1.12",
"keytar": "^7.6.0",
"usb-detection": "github:antelle/node-usb-detection#0ae0d306b02c3a37404d5ff25a424b29c3899727",
"yubikey-chalresp": "^0.3.0"
},
"private": true
}