forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 965 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "@trezor/suite-desktop-api",
"version": "1.0.0",
"private": true,
"author": "Trezor <[email protected]>",
"description": "Strongly typed DesktopApi",
"repository": {
"type": "git",
"url": "git://github.com/trezor/trezor-suite.git"
},
"bugs": {
"url": "https://github.com/trezor/trezor-suite/issues"
},
"main": "./lib/main.js",
"browser": "./lib/renderer.js",
"files": [
"lib/main.js",
"lib/renderer.js",
"!**/*.map"
],
"types": "lib/main.d.ts",
"typings": "lib/main.d.ts",
"scripts": {
"lint:js": "yarn g:eslint '**/*{.ts,.tsx}'",
"test:unit": "jest --verbose -c jest.config.js",
"type-check": "tsc --build tsconfig.json",
"build:lib": "rimraf lib && yarn tsc --build ./tsconfig.lib.json"
},
"devDependencies": {
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"typescript": "4.9.3"
}
}