mirror of
https://github.com/ivuorinen/cinode-api.git
synced 2026-01-26 03:04:03 +00:00
31 lines
812 B
JSON
31 lines
812 B
JSON
{
|
|
"name": "cinode-api-ts",
|
|
"version": "0.1.0",
|
|
"description": "Cinode API TypeScript Client",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "bash generate.sh && npm run docs",
|
|
"docs": "npx typedoc src/cinode.d.ts",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"prettier": "npx prettier --write .",
|
|
"prepare": "husky install"
|
|
},
|
|
"author": "Ismo Vuorinen <https://github.com/ivuorinen>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"dotenv": "^16.0.3",
|
|
"express": "^4.18.2",
|
|
"openapi-fetch": "^0.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@ivuorinen/prettier-config": "^0.3.0",
|
|
"husky": "^9.0.0",
|
|
"lint-staged": "^15.0.0",
|
|
"openapi-typescript": "^7.0.0",
|
|
"typedoc": "^0.26.0"
|
|
},
|
|
"lint-staged": {
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
}
|
|
}
|