filex-cli 0.1.1 → 0.1.3
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 -4
- package/dist/filex.cjs +0 -91
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "filex-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "A CLI agent to modify and interact with your files",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|
|
@@ -12,9 +12,12 @@
|
|
|
12
12
|
"README.md"
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
|
-
"build": "esbuild bin/filex.ts --bundle --platform=node --format=cjs --minify --outfile=dist/filex.cjs --external:sharp",
|
|
15
|
+
"build": "esbuild bin/filex.ts --bundle --platform=node --format=cjs --minify --outfile=dist/filex.cjs --external:sharp --define:__VERSION__=\\\"$(node -p \"require('./package.json').version\")\\\"",
|
|
16
16
|
"dev": "tsx bin/filex.ts",
|
|
17
|
-
"start": "node dist/filex.cjs"
|
|
17
|
+
"start": "node dist/filex.cjs",
|
|
18
|
+
"test": "vitest run",
|
|
19
|
+
"test:watch": "vitest",
|
|
20
|
+
"prepare": "husky"
|
|
18
21
|
},
|
|
19
22
|
"keywords": [
|
|
20
23
|
"cli",
|
|
@@ -42,7 +45,9 @@
|
|
|
42
45
|
"@types/node": "^22.10.5",
|
|
43
46
|
"@vercel/node": "^4.0.0",
|
|
44
47
|
"esbuild": "^0.27.2",
|
|
48
|
+
"husky": "^9.1.7",
|
|
45
49
|
"tsx": "^4.19.2",
|
|
46
|
-
"typescript": "^5.7.3"
|
|
50
|
+
"typescript": "^5.7.3",
|
|
51
|
+
"vitest": "^4.0.17"
|
|
47
52
|
}
|
|
48
53
|
}
|