chore(protobuf,protocol): missing fields in package.json

This commit is contained in:
Martin Varmuza
2023-08-28 15:53:34 +02:00
committed by Carlos García Ortiz
parent ea64c5771f
commit 27a5e8ab43
2 changed files with 20 additions and 0 deletions

View File

@@ -2,8 +2,16 @@
"name": "@trezor/protobuf",
"version": "1.0.0",
"license": "See LICENSE.md in repo root",
"repository": {
"type": "git",
"url": "git://github.com/trezor/trezor-suite.git"
},
"bugs": {
"url": "https://github.com/trezor/trezor-suite/issues"
},
"sideEffects": false,
"main": "lib/index",
"npmPublishAccess": "public",
"files": [
"lib/",
"!**/*.map",

View File

@@ -2,8 +2,20 @@
"name": "@trezor/protocol",
"version": "1.0.0",
"license": "See LICENSE.md in repo root",
"repository": {
"type": "git",
"url": "git://github.com/trezor/trezor-suite.git"
},
"bugs": {
"url": "https://github.com/trezor/trezor-suite/issues"
},
"sideEffects": false,
"main": "lib/index",
"npmPublishAccess": "public",
"files": [
"lib/",
"!**/*.map"
],
"scripts": {
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest -c ../../jest.config.base.js --passWithNoTests",