reelsort 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -2
- package/dist/cli.js +0 -2183
- package/dist/index.d.mts +0 -218
- package/dist/index.d.ts +0 -218
- package/dist/index.js +0 -1842
- package/dist/index.mjs +0 -1767
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reelsort",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "CLI to rename, organize, and manage your movie and TV library — Plex-compatible naming, hardlink support, and automated watch mode.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"media",
|
|
@@ -55,9 +55,15 @@
|
|
|
55
55
|
"clean": "rm -rf dist",
|
|
56
56
|
"fix": "eslint --fix",
|
|
57
57
|
"lint": "eslint",
|
|
58
|
+
"release": "git push --follow-tags",
|
|
59
|
+
"release:major": "npm version major && git push --follow-tags",
|
|
60
|
+
"release:minor": "npm version minor && git push --follow-tags",
|
|
61
|
+
"release:patch": "npm version patch && git push --follow-tags",
|
|
58
62
|
"test": "jest",
|
|
63
|
+
"test:watch": "jest --watchAll",
|
|
59
64
|
"typecheck": "tsc --noEmit",
|
|
60
|
-
"
|
|
65
|
+
"validate": "npm run typecheck && npm run lint && npm test && npm run build",
|
|
66
|
+
"preversion": "npm ci && npm run validate"
|
|
61
67
|
},
|
|
62
68
|
"dependencies": {
|
|
63
69
|
"better-sqlite3": "^12.10.0",
|
|
@@ -72,6 +78,7 @@
|
|
|
72
78
|
"devDependencies": {
|
|
73
79
|
"@types/better-sqlite3": "^7.6.13",
|
|
74
80
|
"@types/chokidar": "^1.7.5",
|
|
81
|
+
"@types/jest": "^30.0.0",
|
|
75
82
|
"@types/node": "^25.0.0",
|
|
76
83
|
"@typescript-eslint/parser": "^8.59.3",
|
|
77
84
|
"eslint": "^10.4.0",
|