@alter-ai/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.
Files changed (4) hide show
  1. package/README.md +208 -0
  2. package/dist/cli.d.ts +76 -0
  3. package/dist/cli.js +12466 -0
  4. package/package.json +49 -0
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@alter-ai/cli",
3
+ "version": "0.1.0",
4
+ "description": "Command-line interface for the Alter Vault dev portal — scripted dashboard automation.",
5
+ "type": "module",
6
+ "bin": {
7
+ "alter": "./dist/cli.js"
8
+ },
9
+ "main": "./dist/cli.js",
10
+ "files": [
11
+ "dist",
12
+ "README.md"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsup",
16
+ "dev": "tsx src/cli.ts",
17
+ "test": "vitest run",
18
+ "test:watch": "vitest",
19
+ "typecheck": "tsc --noEmit",
20
+ "lint": "eslint src/ tests/ --ext .ts",
21
+ "format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'"
22
+ },
23
+ "keywords": [
24
+ "alter",
25
+ "vault",
26
+ "cli",
27
+ "developer-tools",
28
+ "automation"
29
+ ],
30
+ "author": "Alter AI",
31
+ "license": "MIT",
32
+ "dependencies": {
33
+ "commander": "^12.0.0"
34
+ },
35
+ "optionalDependencies": {
36
+ "keytar": "^7.9.0"
37
+ },
38
+ "devDependencies": {
39
+ "@alter-ai/alter-sdk": "workspace:*",
40
+ "@types/node": "^20.0.0",
41
+ "tsup": "^8.0.0",
42
+ "tsx": "^4.7.0",
43
+ "typescript": "^5.5.0",
44
+ "vitest": "^3.0.0"
45
+ },
46
+ "engines": {
47
+ "node": ">=20.10.0"
48
+ }
49
+ }