-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "bare-ffmpeg",
"version": "1.2.2",
"description": "Low-level FFmpeg bindings for Bare",
"exports": {
".": "./index.js",
"./package": "./package.json"
},
"files": [
"index.js",
"binding.cc",
"binding.js",
"CMakeLists.txt",
"lib",
"prebuilds",
"cmake"
],
"addon": true,
"scripts": {
"test": "prettier . --check && bare test.js",
"format": "prettier . --write && clang-format -i binding.cc",
"example": "bare ./examples/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/bare-ffmpeg.git"
},
"author": "Holepunch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/bare-ffmpeg/issues"
},
"homepage": "https://github.com/holepunchto/bare-ffmpeg#readme",
"devDependencies": {
"bare-assert": "^1.1.0",
"brittle": "^3.4.0",
"cmake-bare": "^1.1.2",
"cmake-harden": "^1.0.2",
"cmake-ports": "^1.6.3",
"prettier": "^3.3.3",
"prettier-config-holepunch": "^2.0.0"
}
}