forked from nerdvibe/mina-ledger-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.32 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
58
{
"name": "mina-ledger-js",
"version": "1.0.6",
"description": "JS API for Mina App (Ledger Nano S/X)",
"license": "Apache-2.0",
"author": "Carbonara <[email protected]>",
"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.mjs",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/nerdvibe/mina-ledger-js.git"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
"build": "tsup src/index.ts --format esm,cjs --dts",
"clean": "shx rm -rf dist",
"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",
"shx": "0.3.4",
"tsup": "7.2.0",
"typescript": "5.2.2"
}
}