Initial commit

This commit is contained in:
2026-06-29 15:47:16 +02:00
commit b9d2db7ac9
7 changed files with 280 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "expo-kit",
"version": "1.0.0",
"description": "Expo starter kit CLI",
"repository": {
"type": "git",
"url": "ssh://git@git.justzoe101.nl:2222/Expo-Starter-Kit/CLI.git"
},
"license": "ISC",
"author": "JustZoe101",
"type": "commonjs",
"main": "index.js",
"scripts": {
"start": "npm run clean; npm run build; node ./dist/index.js",
"build": "tsc",
"clean": "rm -rf ./dist"
},
"bin": "./dist/index.js",
"dependencies": {
"child_process": "^1.0.2",
"commander": "^15.0.0"
},
"devDependencies": {
"@types/node": "^26.0.1"
}
}