-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "@bitwarden/sdk-napi",
"version": "1.0.0",
"homepage": "https://github.com/bitwarden/sdk#readme",
"bugs": {
"url": "https://github.com/bitwarden/sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitwarden/sdk.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": "Bitwarden Inc. <[email protected]> (https://bitwarden.com)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"binding.js",
"binding.d.ts",
"./dist/",
"./dist/bitwarden_client/"
],
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --js binding.js --dts binding.d.ts && tsc",
"build-arm64": "napi build --target aarch64-apple-darwin --platform --release --js binding.js --dts binding.d.ts && tsc",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish --skip-gh-release",
"tsc": "tsc",
"version": "napi version"
},
"devDependencies": {
"@napi-rs/cli": "2.18.4",
"typescript": "5.5.4"
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"napi": {
"name": "sdk-napi",
"triples": {
"additional": [
"aarch64-apple-darwin"
]
}
}
}