-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 KB
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
{
"name": "@martinflisar/napi-decimal",
"version": "0.0.10",
"description": "Node Rust binding for handling decimal numbers",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/MarFli/napi-decimal.git"
},
"files": [
"index.d.ts",
"index.js"
],
"napi": {
"binaryName": "napi-decimal",
"targets": [
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-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"
]
},
"engines": {
"node": ">= 10.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"setup": "npm install && yarn install",
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"preversion": "napi build --platform && git add ."
},
"devDependencies": {
"@napi-rs/cli": "^3.2.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
}
}