27 lines
659 B
JSON
27 lines
659 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|