@howler/cli 0.1.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/README.md +40 -0
- package/dist/bin.js +31380 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@howler/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Terminal UI client for Howler encrypted messaging",
|
|
6
|
+
"bin": {
|
|
7
|
+
"howler": "./dist/bin.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=18"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"howler",
|
|
17
|
+
"tui",
|
|
18
|
+
"cli",
|
|
19
|
+
"messaging",
|
|
20
|
+
"encrypted",
|
|
21
|
+
"terminal",
|
|
22
|
+
"ink"
|
|
23
|
+
],
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/angadhn/Howlerv2",
|
|
31
|
+
"directory": "apps/tui"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"typecheck": "tsc --noEmit",
|
|
35
|
+
"build": "node build.mjs",
|
|
36
|
+
"dev": "tsc --watch",
|
|
37
|
+
"start": "node dist/bin.js",
|
|
38
|
+
"test": "vitest run",
|
|
39
|
+
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@privacyresearch/libsignal-protocol-typescript": "^0.0.16",
|
|
43
|
+
"@supabase/supabase-js": "^2.89.0",
|
|
44
|
+
"idb": "^8.0.3",
|
|
45
|
+
"ink": "^6.8.0",
|
|
46
|
+
"react": "^19.2.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@howler/core": "*",
|
|
50
|
+
"@types/react": "^19.2.5",
|
|
51
|
+
"esbuild": "^0.27.4",
|
|
52
|
+
"ink-testing-library": "^4.0.0",
|
|
53
|
+
"typescript": "~5.9.3",
|
|
54
|
+
"vitest": "^3.2.4"
|
|
55
|
+
}
|
|
56
|
+
}
|