mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-25 11:12:17 +01:00
18 lines
510 B
JSON
18 lines
510 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",
|
|
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
|
"lint:js:fix": "yarn lint:js --fix",
|
|
"type-check": "yarn g:tsc --build",
|
|
"test:unit": "yarn g:jest --coverage",
|
|
"test:unit:watch": "yarn g:jest --watch"
|
|
},
|
|
"dependencies": {}
|
|
}
|