first commit
This commit is contained in:
58
package.json
Normal file
58
package.json
Normal 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"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user