-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 750 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"main": "lib/bgra2uyvy.js",
"dependencies": {
"cross-spawn": "^7.0.3",
"node-addon-api": "^6.1.0"
},
"scripts": {
"install": "node arch.mjs",
"build": "node-gyp rebuild",
"build:linux-arm": "CXX=arm-linux-gnueabihf-g++ node-gyp rebuild --arch\"arm\" --target_arch=\"arm\"",
"build:linux-arm64": "CXX=aarch64-linux-gnu-g++ node-gyp rebuild --arch\"arm64\" --target_arch=\"arm64\"",
"build:linux-x64": "CXX=x86_64-linux-gnu-g++ node-gyp rebuild --arch\"x64\" --target_arch=\"x64\"",
"test": "node --napi-modules ./test/test_binding.js"
},
"gypfile": true,
"name": "bgra2uyvy",
"version": "1.1.0",
"description": "Node.js addon to convert BGRA to UYVY",
"author": "James Hope",
"license": "ISC"
}