@candledottv/cli 0.4.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +139 -0
  3. package/dist/index.js +4741 -0
  4. package/package.json +46 -0
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@candledottv/cli",
3
+ "version": "0.4.0",
4
+ "description": "The Candle CLI: authorize a device from your browser, then manage API keys, wallets, and setup health from the terminal",
5
+ "type": "module",
6
+ "bin": {
7
+ "candle": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "engines": {
15
+ "node": ">=18"
16
+ },
17
+ "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/candledottv/agentic.git",
21
+ "directory": "packages/cli"
22
+ },
23
+ "homepage": "https://docs.candle.tv/developers",
24
+ "bugs": {
25
+ "url": "https://github.com/candledottv/agentic/issues"
26
+ },
27
+ "publishConfig": {
28
+ "access": "public",
29
+ "registry": "https://registry.npmjs.org"
30
+ },
31
+ "scripts": {
32
+ "build": "bun build src/index.ts --target=node --format=esm --outfile=dist/index.js",
33
+ "prepublishOnly": "bun run build",
34
+ "test": "bun test",
35
+ "typecheck": "tsc --noEmit",
36
+ "lint": "biome check .",
37
+ "clean": "rm -rf dist"
38
+ },
39
+ "devDependencies": {
40
+ "@hpke/chacha20poly1305": "^1.6.2",
41
+ "@hpke/core": "^1.7.2",
42
+ "@scure/base": "^1.2.6",
43
+ "@types/bun": "^1.1.14",
44
+ "typescript": "^5.7.2"
45
+ }
46
+ }