chore: remove ts config and files

This commit is contained in:
afiqzudinhadi 2024-07-13 00:15:48 +08:00
parent 3029c98cd0
commit 4bfc8176f9
2 changed files with 3 additions and 12 deletions

View file

@ -2,20 +2,14 @@
"name": "cliselect", "name": "cliselect",
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "",
"main": "index.ts", "main": "index.js",
"scripts": { "scripts": {
"index": "ts-node src/index.ts", "index": "node index.js"
"test": "echo \"Error: no test specified\" && exit 1"
}, },
"author": "afiqzudinhadi", "author": "afiqzudinhadi",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@inquirer/prompts": "^5.0.6" "@inquirer/prompts": "^5.0.6"
}, },
"devDependencies": {
"@types/node": "^20.14.8",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"type": "module" "type": "module"
} }

View file

@ -1,3 +0,0 @@
import { input } from "@inquirer/prompts";
const answer = await input({ message: "Enter your name" });