-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
{
"name": "@addasoft/art-downloader",
"version": "1.14.1",
"description": "download artist and album art based on the MBID",
"main": "index.js",
"files": [
"index.js",
"app.js",
"modules"
],
"type": "module",
"scripts": {
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"lint": "npm run lint:prettier",
"format": "npm run format:prettier",
"dev": "node --env-file=.env index.js",
"start": "node --env-file=.env index.js",
"postversion": "git push --follow-tags",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucienimmink/art-downloader.git"
},
"author": "lucien immink",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucienimmink/art-downloader/issues"
},
"homepage": "https://github.com/lucienimmink/art-downloader#readme",
"dependencies": {
"cli-table": "^0.3.11",
"node-fetch": "^3.1.0",
"ora": "^8.0.0",
"read-pkg": "^9.0.0"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"lint-staged": {
"*.js": [
"npm run lint",
"npm run format"
]
},
"devDependencies": {
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0"
},
"volta": {
"node": "22.14.0",
"npm": "11.1.0"
},
"engines": {
"node": "^22.0.0"
}
}