-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.64 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
{
"name": "ffmtools",
"version": "1.1.2",
"description": "Some ffmpeg tips and tricks that might come in handy in one package",
"main": "dist/src/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EhsanFox/fftools.git"
},
"bugs": {
"url": "https://github.com/EhsanFox/fftools/issues"
},
"homepage": "https://github.com/EhsanFox/fftools#readme",
"engines": {
"node": ">=14.9.1",
"npm": ">=7.0.0"
},
"scripts": {
"build": "tsc --project ./tsconfig.json && npm run build:esm",
"build:esm": "gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"build:check": "tsc --project ./tsconfig.json --noEmit --incremental false",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.{ts,js,json,yaml,yml}"
},
"author": {
"email": "ehsan8184@gmail.com",
"name": "Ehsan Golmakani",
"url": "https://ehsan.js.org"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"gen-esm-wrapper": "^1.1.3",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"keywords": [
"fftools",
"ffmpeg",
"metadata",
"ffmpeg-tools",
"tools",
"music",
"id3"
],
"dependencies": {
"@types/through": "^0.0.30",
"through": "^2.3.8"
}
}