turbo-sync/package.json
2024-12-25 20:38:57 +01:00

22 lines
543 B
JSON

{
"name": "@moduletrace/turbosync",
"version": "1.0.0",
"module": "index.js",
"scripts": {
"start": "node index.ts",
"build": "tsc",
"compile": "bun build index.js --compile --outfile bin/turbosync",
"dev": "node index.js --watch"
},
"bin": {
"turbosync": "./index.js"
},
"description": "Sync files and directories with ease",
"main": "index.js",
"author": "Benjamin Toby",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.10.2"
}
}