forked from availproject/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1001 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1001 Bytes
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
{
"name": "@availproject/cli",
"version": "0.1.11",
"description": "A simple CLI for Avail utilities",
"main": "index.js",
"bugs": "https://github.com/availproject/cli/issues",
"homepage": "https://github.com/availproject/cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/availproject/cli.git"
},
"engines": {
"node": ">=16"
},
"keywords": [
"avail",
"data",
"blockchain",
"sdk",
"typescript",
"cli"
],
"type": "module",
"scripts": {
"build": "tsc",
"build:publish": "tsc && npm publish --access=public",
"script": "tsc && node index.js",
"lint": "npx ts-standard --fix"
},
"author": "QEDK",
"license": "Apache-2.0",
"dependencies": {
"avail-js-sdk": "^0.1.7",
"commander": "^11.1.0"
},
"devDependencies": {
"@polkadot/types": "^10.10.1",
"@types/node": "^20.9.0",
"ts-standard": "^12.0.2",
"typescript": "^5.2.2"
},
"bin": {
"avail": "index.js"
}
}