This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "@traeok/keytar-rs",
"description": "keytar meets Rust",
"repository": "https://github.com/traeok/keytar-rs.git",
"author": "traeok <trae.yelovich@broadcom.com>",
"version": "0.0.0",
"main": "index.js",
"types": "index.d.ts",
"files": [
".cargo",
"prebuilds",
"scripts/*.js",
"src",
"build.rs",
"Cargo.lock",
"Cargo.toml",
"index.d.ts",
"index.js"
],
"napi": {
"name": "keytar-rs",
"triples": {
"defaults": true,
"additional": [
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"i686-unknown-linux-gnu",
"i686-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"aarch64-apple-darwin",
"aarch64-linux-android",
"x86_64-unknown-freebsd",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-linux-androideabi"
]
}
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.16.2",
"ava": "^4.3.3"
},
"ava": {
"timeout": "3m"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"install": "node scripts/platformCheck.js || npm run rebuild",
"prepare": "napi build --platform --release",
"prepublishOnly": "bash scripts/prebuildify.sh",
"rebuild": "npx --yes --package=@napi-rs/cli@2.16.2 -- napi build --platform --release --no-dts-header --js=false prebuilds",
"test": "ava",
"version": "napi version"
},
"packageManager": "yarn@3.3.0"
}