A toes tool that implements the git smart HTTP protocol, allowing users to push repos via `git push` and clone via `git clone`. On receive, it extracts the code into a timestamped APPS_DIR directory and activates it through the toes sync API.
27 lines
490 B
JSON
27 lines
490 B
JSON
{
|
|
"name": "git",
|
|
"module": "index.tsx",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"toes": "bun run --watch index.tsx",
|
|
"start": "bun toes",
|
|
"dev": "bun run --hot index.tsx"
|
|
},
|
|
"toes": {
|
|
"tool": true,
|
|
"icon": "🔀"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"@because/forge": "^0.0.1",
|
|
"@because/hype": "^0.0.2",
|
|
"@because/toes": "^0.0.5"
|
|
}
|
|
}
|