hackoon
Version:
Immunefi Hackoon CLI
73 lines (72 loc) • 1.5 kB
JSON
{
"name": "hackoon",
"version": "0.1.3",
"description": "Immunefi Hackoon CLI",
"repository": {
"type": "git",
"url": "git+https://github.com/immunefi-team/hackoon.git"
},
"keywords": [
"Immunefi",
"hackoon"
],
"license": "MIT",
"bin": {
"hackoon": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "prettier --check . && xo && ava"
},
"files": [
"dist"
],
"dependencies": {
"ai": "^3.0.24",
"dotenv": "^16.4.5",
"ink": "^4.4.1",
"ink-gradient": "^3.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^5.0.1",
"meow": "^13.2.0",
"react": "^18.2.0",
"systeminformation": "^5.22.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/react": "^18.2.79",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^5.3.1",
"chalk": "^5.3.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"ink-testing-library": "^3.0.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"xo": "^0.58.0"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
}
}