-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.88 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@camera.ui/rust-postprocessor",
"version": "0.0.5",
"description": "Native Rust detection post-processing (NMS, IoU, merge, object tracking, line crossing & zone filtering) for the camera.ui ecosystem",
"author": "seydx (https://github.com/seydx)",
"main": "index.js",
"types": "index.d.ts",
"type": "commonjs",
"napi": {
"binaryName": "rust-postprocessor",
"targets": [
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"aarch64-apple-darwin",
"aarch64-pc-windows-msvc",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"riscv64gc-unknown-linux-gnu"
]
},
"scripts": {
"audit": "npm audit fix",
"artifacts": "napi artifacts",
"build:debug": "napi build --platform",
"build": "napi build --platform --release",
"clean:cargo": "cargo clean",
"clean": "cargo clean && rimraf --glob *.node",
"format": "prettier --write 'src/' --ignore-unknown --no-error-on-unmatched-pattern && cargo fmt",
"install-updates": "npm i --save",
"lint": "cargo clippy --fix --allow-dirty && eslint --fix .",
"prepublishOnly": "napi prepublish --no-gh-release",
"release": "bash scripts/release.sh",
"test": "cargo test --release",
"universal": "napi universal",
"update": "updates --update ./",
"version": "napi version"
},
"devDependencies": {
"@napi-rs/cli": "^3.7.2",
"@stylistic/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^8.63.0",
"concurrently": "^10.0.3",
"cross-env": "^10.1.0",
"eslint": "9.39.2",
"globals": "^17.7.0",
"prettier": "^3.9.4",
"rimraf": "^6.1.3",
"set-interval-async": "^3.0.3",
"sharp": "^0.35.3",
"typescript": "5.9.3",
"typescript-eslint": "^8.63.0",
"updates": "^17.18.2"
},
"bugs": {
"url": "https://github.com/cameraui/rust-postprocessor/issues"
},
"homepage": "https://github.com/cameraui/rust-postprocessor#readme",
"keywords": [
"camera-ui",
"postprocessing",
"rust"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cameraui/rust-postprocessor.git"
},
"engines": {
"node": ">= 10"
},
"optionalDependencies": {
"@camera.ui/rust-postprocessor-darwin-x64": "0.0.5",
"@camera.ui/rust-postprocessor-win32-x64-msvc": "0.0.5",
"@camera.ui/rust-postprocessor-linux-x64-gnu": "0.0.5",
"@camera.ui/rust-postprocessor-linux-x64-musl": "0.0.5",
"@camera.ui/rust-postprocessor-freebsd-x64": "0.0.5",
"@camera.ui/rust-postprocessor-darwin-arm64": "0.0.5",
"@camera.ui/rust-postprocessor-win32-arm64-msvc": "0.0.5",
"@camera.ui/rust-postprocessor-linux-arm64-gnu": "0.0.5",
"@camera.ui/rust-postprocessor-linux-arm64-musl": "0.0.5",
"@camera.ui/rust-postprocessor-linux-riscv64-gnu": "0.0.5"
}
}