-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.43 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
{
"name": "@entropyxyz/cli",
"version": "0.1.1",
"description": "cli and tui for interacting with the entropy protocol",
"type": "module",
"scripts": {
"start": "yarn build:global && entropy",
"start:debug": "DEBUG=@entropyxyz/cli yarn start",
"build": "./dev/bin/build.sh",
"build:global": "yarn build && npm install -g",
"lint": "eslint . --ext .ts --fix",
"test": "yarn test:types && yarn build:global && yarn test:hosts && yarn test:ts && yarn test:only",
"test:hosts": "./dev/bin/test-hosts.sh",
"test:only": "./dev/bin/test-only.sh",
"test:ts": "yarn removedb && ./dev/bin/test-ts.sh",
"test:types": "tsc --project tsconfig.json",
"prepare": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"link:sdk": "yarn link @entropyxyz/sdk",
"unlink:sdk": "yarn unlink @entropyxyz/sdk",
"re-link:sdk": "yarn unlink:sdk && yarn link:sdk",
"removedb": "rm -rf .entropy && docker compose --file node_modules/@entropyxyz/sdk/dev/docker-scripts/four-nodes.yaml down 2> /dev/null"
},
"files": [
"dist"
],
"bin": {
"entropy": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entropyxyz/cli.git"
},
"keywords": [
"entropy",
"entropyxyz",
"entropy protocol"
],
"author": "entropy.xyz",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/entropyxyz/cli/issues"
},
"homepage": "https://github.com/entropyxyz/cli#readme",
"dependencies": {
"@entropyxyz/sdk": "0.4.0",
"ansi-colors": "^4.1.3",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"env-paths": "^3.0.0",
"inquirer": "8.0.0",
"mkdirp": "^3.0.1",
"winston": "^3.13.0",
"x25519": "^0.1.0",
"yocto-spinner": "^0.1.1"
},
"devDependencies": {
"@swc/core": "^1.4.0",
"@swc/helpers": "^0.5.6",
"@types/cli-progress": "^3",
"@types/inquirer": "^9.0.2",
"@types/node": "^20.12.12",
"@types/tape": "^5.6.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"pinst": "^3.0.0",
"readline": "^1.3.0",
"regenerator-runtime": "^0.14.1",
"tap-spec": "^5.0.0",
"tape": "^5.7.5",
"tsup": "^6.7.0",
"tsx": "^4.15.3",
"typescript": "^4.8.4"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.ts": "eslint --fix"
}
}