Files
trezor-suite/packages/auth-server/package.json
karliatto 0a86a83a31 fix(auth-server): not released package
There is no need to have tsconfig.lib if it is not a package that we
want to release to npm.
2026-01-12 15:47:11 +01:00

22 lines
518 B
JSON

{
"name": "@trezor/auth-server",
"version": "1.0.0",
"private": true,
"license": "See LICENSE.md in repo root",
"sideEffects": false,
"main": "src/index",
"scripts": {
"depcheck": "yarn g:depcheck",
"type-check": "yarn g:tsc --build",
"dev": "yarn g:tsx watch ./src/index.ts",
"start": "node ./lib/index.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^5.2.1"
},
"peerDependencies": {
"tslib": "^2.6.2"
}
}