veillabs-cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ANTIGRAVITY.md +135 -0
- package/README.md +15 -0
- package/dist/cli.js +103 -0
- package/dist/index.js +15 -0
- package/dist/index.js.map +123 -0
- package/package.json +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "veillabs-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Veil Labs SDK & CLI for privacy-focused cross-chain swaps",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"veillabs": "./dist/cli.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md",
|
|
14
|
+
"ANTIGRAVITY.md"
|
|
15
|
+
],
|
|
16
|
+
"author": "Veil Labs",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"type": "module",
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "bun run index.ts",
|
|
21
|
+
"build": "bun run scripts/build.ts",
|
|
22
|
+
"test": "bun test",
|
|
23
|
+
"prepublishOnly": "bun run build"
|
|
24
|
+
},
|
|
25
|
+
"private": false,
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@types/bun": "latest"
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"typescript": "^5"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@types/cli-progress": "^3.11.6",
|
|
34
|
+
"@types/node": "^25.5.0",
|
|
35
|
+
"@types/ora": "^3.2.0",
|
|
36
|
+
"axios": "^1.14.0",
|
|
37
|
+
"chalk": "^5.6.2",
|
|
38
|
+
"cli-progress": "^3.12.0",
|
|
39
|
+
"commander": "^14.0.3",
|
|
40
|
+
"enquirer": "^2.4.1",
|
|
41
|
+
"ora": "^9.3.0",
|
|
42
|
+
"table": "^6.9.0"
|
|
43
|
+
}
|
|
44
|
+
}
|