turbo-sync/package.json

22 lines
543 B
JSON
Raw Normal View History

2024-10-16 04:44:48 +00:00
{
2024-12-25 19:38:57 +00:00
"name": "@moduletrace/turbosync",
"version": "1.0.0",
2024-10-16 04:44:48 +00:00
"module": "index.js",
"scripts": {
"start": "node index.ts",
"build": "tsc",
2024-12-25 19:38:57 +00:00
"compile": "bun build index.js --compile --outfile bin/turbosync",
2024-10-16 04:44:48 +00:00
"dev": "node index.js --watch"
},
"bin": {
"turbosync": "./index.js"
},
2024-10-16 05:50:00 +00:00
"description": "Sync files and directories with ease",
2024-10-16 04:44:48 +00:00
"main": "index.js",
"author": "Benjamin Toby",
2024-12-25 19:38:57 +00:00
"license": "ISC",
"devDependencies": {
"@types/node": "^22.10.2"
}
2024-10-16 04:44:48 +00:00
}