-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "media-organizer",
"description": "CLI program for creating dedicated folder structure for media by its metadata",
"version": "0.9.1",
"author": "Vadim Shvetsov <[email protected]>",
"bin": {
"media-organizer": "dist/index.js"
},
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=20.10"
},
"dependencies": {
"commander": "^2.19.0",
"exiftool": "git+https://[email protected]/nathanpeck/exiftool.git",
"ora": "^8.0.1",
"progress-stream": "^2.0.0",
"ramda": "^0.26.1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.10.4",
"@types/progress-stream": "^2.0.5",
"@types/ramda": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"standard-version": ">=8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"dev": "tsc --watch",
"lint": "eslint .",
"release": "npm run test && standard-version",
"test": "node --import tsx --test src/__test__/*.test.ts"
},
"license": "MIT"
}