-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 KB
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
{
"name": "@orderly.network/cli",
"version": "0.1.0",
"description": "CLI tool for Orderly Network trading - secure keychain-based authentication",
"main": "dist/index.js",
"type": "module",
"bin": {
"orderly": "dist/index.js"
},
"scripts": {
"build": "node scripts/build.js",
"dev": "node scripts/build.js --watch",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,json,md}\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"orderly",
"orderly-network",
"cli",
"trading",
"defi",
"perpetuals"
],
"author": "Orderly Network",
"license": "MIT",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@noble/curves": "^2.0.1",
"@orderly.network/default-solana-adapter": "^2.10.2",
"axios": "^1.13.6",
"bs58": "^6.0.0",
"cac": "6.7.14",
"ethers": "^6.16.0",
"keytar": "^7.9.0",
"kleur": "^4.1.5",
"prompts": "^2.4.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "^24.0.0",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"esbuild": "^0.27.4",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"engines": {
"node": ">=22.0.0"
}
}