-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "ffopti",
"version": "1.0.0",
"description": "CLI tool for local assets optimization services",
"main": "bin/index.js",
"keywords": [
"cli",
"compress",
"ffmpeg",
"optimize"
],
"author": "Himanshu Dwivedi",
"license": "MIT",
"bin": {
"ffopti": "./bin/index.js"
},
"homepage": "https://github.com/ShareChat/ffopti",
"repository": {
"type": "git",
"url": "git+https://github.com/ShareChat/ffopti.git"
},
"bugs": {
"url": "https://github.com/ShareChat/ffopti/issues"
},
"config": {
"workflow_id": "1_g0bgcvUt_zBcVTe7UIOlpojqOJoEfiy"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pkg package.json && cd dist/ && tar -czf ffopti.tar.gz ffopti",
"brew": "brew install ffmpeg pngquant",
"workflow": "workflow_path=${HOME}/Desktop; curl -L \"https://drive.google.com/uc?export=download&id=$npm_package_config_workflow_id\" -o ${HOME}/ffopti.zip && unzip ${HOME}/ffopti.zip -d $workflow_path && rm ${HOME}/ffopti.zip"
},
"engines": {
"node": ">14.2.0"
},
"os": ["darwin"],
"pkg": {
"scripts": "build/**/*.js",
"assets": "assets/**/*",
"targets": [
"node16-macos-x64"
],
"outputPath": "dist"
},
"dependencies": {
"fs-extra": "^10.0.1",
"node-dir": "^0.1.17",
"yargs": "^17.3.1"
}
}