This repository has been archived by the owner on Sep 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.92 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
{
"name": "@integrationos/node",
"version": "3.8.15",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "node",
"triples": {
"defaults": true,
"additional": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-pc-windows-msvc"
]
}
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.15.2",
"ava": "^5.1.1"
},
"ava": {
"timeout": "3m"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build-all": "napi build --platform --release --cargo-cwd sdk && napi build --target aarch64-apple-darwin --platform --release --cargo-cwd sdk npm/darwin-arm64 && napi build --target x86_64-apple-darwin --platform --release --cargo-cwd sdk npm/darwin-x64 && napi build --target x86_64-unknown-linux-gnu --platform --release --cargo-cwd sdk npm/linux-x64-gnu",
"build:linux": "napi build --target x86_64-unknown-linux-gnu --platform --release --cargo-cwd sdk npm/linux-x64-gnu",
"build:mac": "napi build --target aarch64-apple-darwin --platform --release --cargo-cwd sdk npm/darwin-arm64 && napi build --target x86_64-apple-darwin --platform --release --cargo-cwd sdk npm/darwin-x64",
"build": "napi build --platform --release --cargo-cwd sdk",
"build:debug": "napi build --platform --cargo-cwd sdk",
"test": "ava",
"version": "napi version",
"postbuild-all": "npm run postbuild",
"postbuild:debug": "npm run postbuild",
"postbuild:linux": "npm run postbuild && cd npm/linux-x64-gnu && npm run postbuild",
"postbuild:mac": "npm run postbuild && cd npm/darwin-arm64 && npm run postbuild && cd ../darwin-x64 && npm run postbuild && rm *-e",
"postbuild": "sed -i'' -e 's/<Type>//g' index.js && sed -i'' -e '/^export type*/d' index.d.ts",
"prepublishOnly": "napi prepublish -t npm"
},
"packageManager": "[email protected]",
"dependencies": {
"dotenv": "^16.4.5"
}
}