-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "ffhelper",
"version": "0.1.0",
"description": "A FFmpeg CLI tool to make trimming, compressing, and audio management easier.",
"main": "src/index.ts",
"bin": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"lint": "eslint src --fix",
"build": "rollup -c --configPlugin @rollup/plugin-typescript",
"bundle": "pkg package.json"
},
"keywords": [],
"author": "Norikiru",
"license": "ISC",
"dependencies": {
"inquirer": "^8.0.0"
},
"pkg": {
"targets": [
"latest-win-x64"
],
"outputPath": "dist"
},
"type": "module",
"devDependencies": {
"typescript": "^4.9.5",
"eslint": "^8.33.0",
"pkg": "^5.8.0",
"rollup": "^3.17.2",
"rollup-plugin-typescript-paths": "^1.4.0",
"@swc/core": "^1.3.34",
"@types/inquirer": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0"
}
}