-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.17 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.17 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
{
"name": "handstop",
"displayName": "Handstop",
"version": "1.0.3",
"description": "Handstop is a robust video encoding library for Node.js, built on the core of the HandBrake video encoding binary. It offers efficient video compression with three output formats optimized for web use: WebM-AV1, MP4-AV1, and MP4-x265. Each format comes with three customizable presets to balance compression levels, file size, and encoding speed, achieving a maximum compression ratio of 93.16%.",
"main": "./dist/handstop.js",
"exports": {
"import": "./dist/handstop.js",
"require": "./dist/handstop.js",
"types": "./dist/types/handstop.d.ts"
},
"files": [
"dist"
],
"directories": {
"lib": "./dist/lib"
},
"preferGlobal": true,
"bin": {
"handstop": "./dist/bin/setup.js"
},
"repository": "https://github.com/iamspdarsan/handstop",
"bugs": {
"url": "https://github.com/iamspdarsan/handstop/issues"
},
"author": "DARSAN <darsan@cresteem.com>",
"maintainers": [
"DARSAN <darsan@cresteem.com>"
],
"license": "Apache-2.0",
"private": false,
"scripts": {
"dev": "rimraf dist && tsc -p tscdev.json && ncp ./presets ./dist/presets",
"dr": "cls && yarn dev && yarn rp",
"rp": "node ./dist/handstop.js",
"build": "cls && rimraf dist && tsc -p tsconfig.json && ncp ./presets ./dist/presets",
"watch": "tsc --watch",
"clean": "cls && rimraf dist",
"deploy": "yarn build && yarn publish --access public && git push",
"postinstall": "node ./dist/bin/setup.js",
"posti": "node ./dist/bin/setup.js"
},
"keywords": [
"video-encoding",
"node.js",
"handstop-library",
"handbrake-integration",
"video-compression",
"web-video-formats",
"gpu-acceleration",
"mp4-x265",
"webm-av1",
"mp4-av1",
"high-performance",
"open-source",
"api-integration",
"video-presets",
"compression-levels"
],
"dependencies": {
"decompress": "4.2.1"
},
"devDependencies": {
"@types/decompress": "4.2.7",
"@types/node": "^20.14.9",
"ncp": "2.0.0",
"rimraf": "5.0.5",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"homepage": "https://www.npmjs.com/package/handstop"
}