22 lines
543 B
JSON
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"
|
|
}
|
|
}
|