-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.26 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.26 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
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
94
95
{
"name": "qiforge-cli",
"version": "1.3.5",
"description": "CLI tool for creating and managing IXO Oracle projects",
"main": "dist/cli.js",
"type": "module",
"bin": {
"qiforge-cli": "./dist/cli.js"
},
"preferGlobal": true,
"scripts": {
"build": "node build.mjs",
"dev": "node --watch build.mjs",
"start": "node dist/cli.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"prepublishOnly": "pnpm build"
},
"keywords": [
"cli",
"ixo",
"blockchain",
"oracles",
"ai",
"matrix",
"signx",
"qiforge"
],
"author": "IXO Foundation",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ixoworld/ixo-oracles-cli.git"
},
"bugs": {
"url": "https://github.com/ixoworld/ixo-oracles-cli/issues"
},
"homepage": "https://github.com/ixoworld/ixo-oracles-cli#readme",
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"@clack/prompts": "^1.0.1",
"@cosmjs/crypto": "^0.34.0",
"@cosmjs/encoding": "^0.34.0",
"@ixo/ucan": "^1.2.2",
"@cosmjs/proto-signing": "^0.34.0",
"@ixo/impactxclient-sdk": "^2.4.1",
"@ixo/matrixclient-sdk": "^1.0.0",
"@ixo/signx-sdk": "^1.2.0",
"@matrix-org/matrix-sdk-crypto-wasm": "^15.1.0",
"bs58": "^6.0.0",
"eciesjs": "^0.4.15",
"jose": "^6.0.8",
"loglevel": "^1.9.2",
"matrix-js-sdk": "^37.12.0",
"md5": "^2.3.0",
"multiformats": "^13.3.7",
"node-fetch": "^3.3.2",
"qrcode-terminal": "^0.12.0",
"simple-git": "^3.28.0",
"zod": "^4.0.14"
},
"devDependencies": {
"@cosmjs/stargate": "0.32.4",
"@types/jest": "^29.5.0",
"@types/md5": "^2.3.5",
"@types/node": "^22.0.0",
"@types/qrcode-terminal": "^0.12.2",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"esbuild": "^0.27.4",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.4.0"
},
"pnpm": {
"overrides": {
"node-fetch": "^3.3.2"
},
"onlyBuiltDependencies": [
"esbuild",
"protobufjs"
]
}
}