-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.66 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "mvs-ledger",
"version": "0.0.7",
"description": "Metaverse library for ledger hardware wallet support",
"main": "lib/index",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvs-org/mvs-ledger-js.git"
},
"bugs": {
"url": "https://github.com/mvs-org/mvs-ledger-js/issues"
},
"scripts": {
"test": "echo 1",
"deploy": "npm publish",
"bundle": "webpack",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js && npm run bundle",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"keywords": [
"metaverse",
"ledger",
"blockchain"
],
"author": "Sven Mutzl",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime": "^7.8.7",
"@types/ledgerhq__hw-transport-node-hid": "^4.22.1",
"@types/ledgerhq__hw-transport-webusb": "^4.70.0",
"@types/node": "^13.7.7",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@ledgerhq/hw-transport": "^5.9.0",
"@ledgerhq/hw-transport-node-hid": "^5.10.0",
"@ledgerhq/hw-transport-webusb": "^4.77.0",
"babel-polyfill": "^6.26.0"
}
}