-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "mina-ledger-js",
"version": "1.0.7",
"description": "JS API for Mina App (Ledger Nano S/X)",
"license": "Apache-2.0",
"author": "Carbonara <gh@carbonara.science>",
"keywords": [
"Ledger",
"Javascript",
"Mina",
"Minaprotocol"
],
"bugs": {
"url": "https://github.com/nerdvibe/mina-ledger-js/issues"
},
"homepage": "https://github.com/nerdvibe/mina-ledger-js",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nerdvibe/mina-ledger-js.git"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"start": "ts-node-dev src/index.ts",
"build": "tsc --outDir dist/ --declaration",
"test": "echo \"No test specified for now\""
},
"dependencies": {
"buffer": "6.0.3"
},
"devDependencies": {
"husky": "5.1.3",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"ts-node-dev": "1.0.0",
"typescript": "4.2.3"
}
}