mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-20 00:33:07 +01:00
26 lines
808 B
JSON
26 lines
808 B
JSON
{
|
|
"name": "@suite-common/earn-api",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"license": "See LICENSE.md in repo root",
|
|
"sideEffects": false,
|
|
"main": "src/index",
|
|
"scripts": {
|
|
"depcheck": "yarn g:depcheck",
|
|
"lint:js": "yarn g:eslint './**/*.{ts,mjs}'",
|
|
"type-check": "yarn g:tsc --build",
|
|
"format": "prettier --write \"**/*.{ts,yaml}\"",
|
|
"orval": "orval --config ./orval.config.ts",
|
|
"api:fetch": "node ./scripts/fetchSpec.mjs",
|
|
"api:generate": "yarn orval",
|
|
"api:update": "yarn api:fetch && yarn api:generate && yarn lint:js --fix && yarn format"
|
|
},
|
|
"devDependencies": {
|
|
"orval": "8.2.0",
|
|
"prettier": "3.7.4"
|
|
},
|
|
"dependencies": {
|
|
"@suite-common/react-query": "workspace:^"
|
|
}
|
|
}
|