diffden 0.1.0
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/README.md +29 -0
- package/dist/cli.js +890 -0
- package/dist/index.js +883 -0
- package/package.json +34 -0
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "diffden",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Terminal UI that snapshots watched files into an internal git repository",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"diffden": "dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=18.17"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsup",
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"dev": "bun run --watch src/cli.ts",
|
|
21
|
+
"start": "node dist/cli.js",
|
|
22
|
+
"prepublishOnly": "npm run typecheck && npm run build"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/node": "^22.13.10",
|
|
26
|
+
"tsup": "^8.5.0",
|
|
27
|
+
"typescript": "^5.9.2"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@opentui/core": "^0.1.77",
|
|
31
|
+
"chokidar": "^5.0.0",
|
|
32
|
+
"simple-git": "^3.30.0"
|
|
33
|
+
}
|
|
34
|
+
}
|