This commit is contained in:
Benjamin Toby
2025-01-16 07:12:45 +01:00
parent 222d1a4372
commit 219db3d88e
25 changed files with 631 additions and 21 deletions
+4 -4
View File
@@ -1,15 +1,15 @@
{
"name": "@moduletrace/turbosync",
"version": "1.0.0",
"module": "index.js",
"module": "dist/index.js",
"scripts": {
"start": "node index.ts",
"start": "node dist/index.js",
"build": "tsc",
"compile": "bun build index.js --compile --outfile bin/turbosync",
"compile": "bun build index.ts --compile --outfile bin/turbosync",
"dev": "node index.js --watch"
},
"bin": {
"turbosync": "./index.js"
"turbosync": "./dist/index.js"
},
"description": "Sync files and directories with ease",
"main": "index.js",