-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
93 lines (93 loc) · 2.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@stacks/send-many-stx-cli",
"description": "A simple CLI for making a bulk STX transfer in one command.",
"author": "Hiro PBC",
"version": "1.4.0",
"license": "MIT",
"homepage": "https://github.com/blockstack/send-many-stx-cli",
"repository": {
"type": "git",
"url": "https://github.com/blockstack/send-many-stx-cli.git"
},
"main": "dist/index.js",
"files": [
"dist",
"src",
"/oclif.manifest.json"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "ts-node src/start.ts",
"compile": "ncc build src/index.ts --no-source-map-register -e @oclif/command -e @oclif/errors",
"build-single-file": "yarn compile && oclif-dev readme",
"build": "rm -rf dist && tsc -b && oclif-dev readme && oclif-dev manifest",
"test": "tsdx test",
"lint": "tsdx lint",
"size": "size-limit",
"analyze": "size-limit --why",
"docs": "oclif-dev readme",
"version": "yarn build",
"typecheck": "tsc --noEmit",
"postpack": "rm -f oclif.manifest.json",
"prepack": "yarn build"
},
"bin": {
"stx-bulk-transfer": "./bin/run"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"oclif": {
"commands": "./dist/commands",
"bin": "stx-bulk-transfer"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/bulk-send.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/bulk-send.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@oclif/config": "^1.17.0",
"@oclif/dev-cli": "^1.26.0",
"@oclif/errors": "^1.3.4",
"@size-limit/preset-small-lib": "^4.9.1",
"@types/node-fetch": "^2.5.10",
"@vercel/ncc": "0.27.0",
"cli-ux": "^5.5.1",
"husky": "^4.3.8",
"oclif": "^1.16.1",
"size-limit": "^4.9.1",
"ts-node": "^9.1.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@stacks/common": "1.2.2",
"@stacks/network": "1.2.2",
"@stacks/transactions": "1.2.2",
"bn.js": "^5.1.3",
"c32check": "^1.1.2",
"node-fetch": "^2.6.1"
},
"publishConfig": {
"access": "public"
}
}