-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "@availproject/cli",
"version": "0.1.15",
"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": ">=18"
},
"keywords": ["avail", "data", "blockchain", "sdk", "typescript", "cli"],
"type": "module",
"scripts": {
"build": "npx tsc",
"build:publish": "npx tsc && npm publish --access=public",
"script": "node index.js",
"lint": "npx biome check --write ."
},
"author": "QEDK",
"license": "Apache-2.0",
"dependencies": {
"avail-js-sdk": "^0.2",
"commander": "^12.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9",
"@polkadot/types": "^10.13",
"@types/node": "^22.7",
"typescript": "^5.4"
},
"bin": {
"avail": "index.js"
},
"overrides": {
"@polkadot/util": "^12.6",
"@polkadot/types": "^10.13",
"ws": "^8.17.1"
},
"trustedDependencies": ["@biomejs/biome"]
}