-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 770 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 770 Bytes
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
{
"name": "iris",
"version": "0.5.0",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "iris",
"triples": {
"defaults": true,
"additional": [
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"i686-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"aarch64-apple-darwin",
"aarch64-linux-android"
]
}
},
"scripts": {
"build": "napi build --platform --release --strip --features node --cargo-flags=--no-default-features",
"build:debug": "napi build --platform --features node --cargo-flags=--no-default-features",
"test": "node tests/test.js"
},
"devDependencies": {
"@napi-rs/cli": "^2.16.0"
},
"engines": {
"node": ">= 10"
}
}