first commit

This commit is contained in:
2025-10-10 11:30:12 +02:00
commit 3aaadfdb62
10 changed files with 10214 additions and 0 deletions

58
package.json Normal file
View File

@@ -0,0 +1,58 @@
{
"name": "dash-cli",
"version": "0.0.0",
"license": "MIT",
"bin": "dist/cli.js",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "babel --out-dir=dist source",
"dev": "babel --out-dir=dist --watch source",
"test": "prettier --check . && xo && ava"
},
"files": [
"dist"
],
"dependencies": {
"ink": "^4.1.0",
"meow": "^11.0.0",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/preset-react": "^7.18.6",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^5.2.0",
"chalk": "^5.2.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"import-jsx": "^5.0.0",
"ink-testing-library": "^3.0.0",
"prettier": "^2.8.7",
"xo": "^0.53.1"
},
"ava": {
"environmentVariables": {
"NODE_NO_WARNINGS": "1"
},
"nodeArguments": [
"--loader=import-jsx"
]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
},
"prettier": "@vdemedes/prettier-config",
"babel": {
"presets": [
"@babel/preset-react"
]
}
}