-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "beatport-tagger",
"version": "1.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"prestart": "npx tsc index.ts --skipLibCheck",
"start": "node index.js",
"prebuild": "npx tsc index.ts --skipLibCheck",
"build": "pkg index.js -o beatport-tagger"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"axios": "^0.27.1",
"cheerio": "^1.0.0-rc.10",
"flac-metadata": "^0.1.1",
"fluent-ffmpeg": "^2.1.2",
"images": "^3.2.4",
"pkg": "^5.8.1",
"truncate-utf8-bytes": "^1.0.2",
"webp-converter": "^2.3.3"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.20",
"@types/node": "^17.0.27",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-standard": "^5.0.0",
"typescript": "^4.6.3"
}
}