-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.36 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@sylphlab/media-curator",
"version": "1.3.0",
"description": "MediaCurator: An intelligent CLI tool to curate, organize, and deduplicate your digital photo and video collection.",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"bin": {
"media-curator": "./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": "vitest run",
"test:watch": "vitest watch",
"test:cov": "vitest run --coverage",
"prepare": "husky",
"format": "prettier --write . --cache",
"check-format": "prettier --check . --cache",
"lint": "eslint . --ext .ts,.tsx,.js,.cjs --cache",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.cjs --fix --cache",
"validate": "bun run check-format && bun run lint && bun run typecheck && bun run test",
"typecheck": "tsc --noEmit",
"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/better-sqlite3": "^7.6.13",
"@types/fluent-ffmpeg": "^2.1.25",
"@types/node": "^22.14.0",
"better-sqlite3": "^11.9.1",
"deep-eql": "^5.0.2",
"exiftool-vendored": "^24.6.0",
"fast-equals": "^5.2.2",
"fluent-ffmpeg": "^2.1.3",
"lmdb": "^3.0.13",
"neverthrow": "^8.2.0",
"sharp": "^0.33.5",
"workerpool": "^9.1.3",
"commander": "^9.5.0"
},
"devDependencies": {
"@datastructures-js/heap": "^4.3.3",
"@eslint/js": "^9.9.0",
"@topcli/spinner": "^2.1.2",
"@types/bun": "^1.2.8",
"@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",
"eslint": "^9.9.0",
"eslint-config-prettier": "^10.1.1",
"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",
"vitest": "^3.1.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=0.5.0"
},
"homepage": "https://github.com/sylphlab/media-curator#readme",
"bugs": {
"url": "https://github.com/sylphlab/media-curator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sylphlab/media-curator.git"
},
"keywords": [
"media-curator",
"typescript",
"nodejs",
"bun",
"cli",
"media-organizer",
"deduplication",
"perceptual-hashing",
"image-processing",
"video-processing",
"sqlite",
"lmdb",
"ffmpeg",
"sharp",
"exiftool",
"functional-programming"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
}
}