indigo-cli 0.1.0 → 0.1.2

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 (3) hide show
  1. package/README.md +65 -207
  2. package/main.js +4666 -2302
  3. package/package.json +23 -12
package/package.json CHANGED
@@ -1,25 +1,26 @@
1
1
  {
2
2
  "name": "indigo-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Indigo CLI - Terminal-based access to Indigo for power users",
5
5
  "keywords": [
6
6
  "indigo",
7
7
  "cli",
8
8
  "signals",
9
- "chat",
10
- "ai"
9
+ "ai",
10
+ "meeting notes",
11
+ "productivity"
11
12
  ],
12
- "homepage": "https://github.com/anthropics/indigo-nx#readme",
13
+ "homepage": "https://www.getindigo.ai",
13
14
  "bugs": {
14
- "url": "https://github.com/anthropics/indigo-nx/issues"
15
+ "url": "https://github.com/indigoai-us/indigo-nx/issues"
15
16
  },
16
17
  "repository": {
17
18
  "type": "git",
18
- "url": "git+https://github.com/anthropics/indigo-nx.git",
19
+ "url": "git+https://github.com/indigoai-us/indigo-nx.git",
19
20
  "directory": "apps/cli"
20
21
  },
21
22
  "license": "MIT",
22
- "author": "Anthropic",
23
+ "author": "Indigo Team",
23
24
  "type": "commonjs",
24
25
  "main": "./main.js",
25
26
  "bin": {
@@ -29,15 +30,25 @@
29
30
  "main.js",
30
31
  "README.md"
31
32
  ],
33
+ "scripts": {
34
+ "build": "esbuild src/main.ts --bundle --platform=node --target=node18 --outfile=dist/main.js --format=cjs --external:keytar --banner:js='#!/usr/bin/env node'",
35
+ "prepublish": "npm run build && cp package.json README.md dist/",
36
+ "publish:npm": "npm run prepublish && cd dist && npm publish --access public",
37
+ "dev": "npx tsx src/main.ts"
38
+ },
32
39
  "dependencies": {
33
- "commander": "^12.1.0",
34
- "dotenv": "^17.2.3"
40
+ "commander": "^12.1.0"
35
41
  },
36
42
  "optionalDependencies": {
37
43
  "keytar": "^7.9.0"
38
44
  },
45
+ "devDependencies": {
46
+ "@types/node": "18.16.9",
47
+ "@yao-pkg/pkg": "^5.15.0",
48
+ "esbuild": "^0.20.0",
49
+ "eslint-plugin-unused-imports": "^3.2.0"
50
+ },
39
51
  "engines": {
40
52
  "node": ">=18.0.0"
41
- },
42
- "packageManager": "pnpm@10.19.0"
43
- }
53
+ }
54
+ }