forked from 75lb/handbrake-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.49 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "handbrake-js",
"author": "Lloyd Brookes <75pound@gmail.com>",
"version": "7.0.0",
"description": "Handbrake for node.js. Brings video encoding.",
"repository": "https://github.com/75lb/handbrake-js",
"license": "MIT",
"type": "module",
"bin": {
"handbrake": "bin/cli.js"
},
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"keywords": [
"handbrake",
"encode",
"transcode",
"video",
"mp4",
"m4v",
"avi",
"h.264",
"h.265",
"vp8",
"mp3"
],
"engines": {
"node": ">=14"
},
"files": [
"bin/cli.js",
"lib",
"dist",
"scripts",
"index.js"
],
"scripts": {
"test": "npm run dist && npm run test:ci",
"test:ci": "test-runner test/*.js",
"dist": "rollup -c",
"postinstall": "node scripts/install.js",
"ubuntu-setup": "./scripts/install-ubuntu.sh",
"docs": "jsdoc2md -t README.hbs lib/*.js index.js > README.md"
},
"dependencies": {
"ansi-escape-sequences": "^6.2.2",
"command-line-args": "^5.2.1",
"current-module-paths": "^1.1.1",
"decompress": "^4.2.1",
"node-fetch": "^3.3.1",
"object-to-spawn-args": "^2.0.1",
"rimraf": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"jsdoc-to-markdown": "^8.0.0",
"rollup": "^3.21.3",
"sleep-anywhere": "^2.1.1",
"test-runner": "^0.10.1"
},
"standard": {
"envs": [
"node"
]
}
}