Files
trezor-suite/scripts/package-template/package.json
2024-06-18 13:07:58 +02:00

16 lines
426 B
JSON

{
"name": "suite-package-template",
"version": "1.0.0",
"main": "src/index",
"license": "See LICENSE.md in repo root",
"private": true,
"sideEffects": false,
"scripts": {
"depcheck": "yarn g:depcheck",
"type-check": "yarn g:tsc --build",
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest -c ../../jest.config.base.js"
},
"dependencies": {}
}