-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@sotilab/smo",
"version": "1.3.0",
"description": "A powerful CLI tool to organize photos and videos based on their creation date and metadata, with support for duplicate detection and customizable directory structure.",
"publishConfig": {
"access": "public"
},
"main": "index.ts",
"type": "module",
"bin": {
"smo": "./dist/index.js"
},
"scripts": {
"start": "bun run index.ts",
"build": "bun build index.ts --outdir dist --target node --external lmdb --external sharp --external exiftool-vendored --external fluent-ffmpeg --minify && bun run asbuild:release && cp build/index.wasm dist/index.wasm",
"start:node": "node dist/index.js",
"test": "node tests",
"prepare": "husky",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"asbuild": "asc assembly/index.ts --target debug --outFile build/index.wasm",
"asbuild:release": "asc assembly/index.ts --target release --outFile build/index.wasm"
},
"author": "shtse8",
"license": "MIT",
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"@types/fluent-ffmpeg": "^2.1.25",
"deep-eql": "^5.0.2",
"exiftool-vendored": "^24.6.0",
"fluent-ffmpeg": "^2.1.3",
"inversify": "^6.0.2",
"lmdb": "^3.0.13",
"reflect-metadata": "^0.2.2",
"sharp": "^0.33.5",
"workerpool": "^9.1.3"
},
"devDependencies": {
"@datastructures-js/heap": "^4.3.3",
"@eslint/js": "^9.9.0",
"@topcli/spinner": "^2.1.2",
"@types/bun": "latest",
"@types/cli-progress": "^3.11.6",
"@types/deep-eql": "^4.0.2",
"assemblyscript": "^0.27.29",
"async-mutex": "^0.5.0",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"commander": "^9.5.0",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"node-addon-api": "^8.1.0",
"node-gyp": "^10.2.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14.0.0",
"bun": ">=0.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/shtse8/SotiMediaOrganizer.git"
},
"keywords": [
"photo",
"video",
"organizer",
"cli",
"exif",
"metadata",
"date",
"bun",
"typescript"
],
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
}
}