mirror of
https://github.com/cupcakearmy/clitastic.git
synced 2024-12-21 23:46:24 +00:00
38 lines
769 B
JSON
38 lines
769 B
JSON
{
|
|
"name": "clitastic",
|
|
"version": "0.1.1",
|
|
"description": "Interactive CLI utility",
|
|
"author": {
|
|
"email": "hi@nicco.io",
|
|
"name": "Niccolo Borgioli",
|
|
"url": "https://nicco.io"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/CupCakeArmy/clitastic"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsnd --respawn --no-notify test/main.ts",
|
|
"prepublishOnly": "rm -rf ./lib && npm run build"
|
|
},
|
|
"keywords": [
|
|
"cli",
|
|
"interface",
|
|
"interactive"
|
|
],
|
|
"license": "MIT",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"files": [
|
|
"./lib"
|
|
],
|
|
"devDependencies": {
|
|
"@types/node": "^14",
|
|
"chalk": "^4.1.0",
|
|
"ts-node-dev": "^1",
|
|
"typescript": "4.0"
|
|
},
|
|
"dependencies": {}
|
|
}
|