@tolstoy-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 (2) hide show
  1. package/build/cli.js +29084 -0
  2. package/package.json +36 -0
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@tolstoy-ai/cli",
3
+ "version": "0.1.0",
4
+ "bin": {
5
+ "tolstoy": "./build/cli.js"
6
+ },
7
+ "main": "build/cli.js",
8
+ "files": [
9
+ "build"
10
+ ],
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "scripts": {
15
+ "generate:registry": "tsx scripts/generate-registry.ts",
16
+ "prebuild": "pnpm generate:registry",
17
+ "build": "rm -rf build && esbuild src/cli.ts --bundle --platform=node --target=node20 --outfile=build/cli.js --format=cjs --banner:js='#!/usr/bin/env node'",
18
+ "lint": "biome check --max-diagnostics=none .",
19
+ "deploy:prod": "npm publish --access public"
20
+ },
21
+ "devDependencies": {
22
+ "@tolstoy/api-commons": "workspace:*",
23
+ "@tolstoy/products-service-api": "workspace:*",
24
+ "@tolstoy/account-service-api": "workspace:*",
25
+ "@tolstoy/player-service-api": "workspace:*",
26
+ "@tolstoy/video-service-api": "workspace:*",
27
+ "@tolstoy/billing-service-api": "workspace:*",
28
+ "@tolstoy/media-gallery-service-api": "workspace:*",
29
+ "@tolstoy/widgets-service-api": "workspace:*",
30
+ "zod": "catalog:",
31
+ "@types/node": "catalog:",
32
+ "tsx": "^4.7.0",
33
+ "typescript": "catalog:",
34
+ "esbuild": "^0.23.0"
35
+ }
36
+ }