@revturbine/cli 0.1.1

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 +65 -0
  3. package/dist/cli.js +5527 -0
  4. package/package.json +44 -0
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@revturbine/cli",
3
+ "version": "0.1.1",
4
+ "description": "revturbine — verify RevTurbine ExportedConfig files and ship them to a RevTurbine instance through the Change Set lifecycle.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/revt-eng/revturbine-cli.git"
9
+ },
10
+ "homepage": "https://github.com/revt-eng/revturbine-cli#readme",
11
+ "bugs": "https://github.com/revt-eng/revturbine-cli/issues",
12
+ "type": "module",
13
+ "bin": {
14
+ "revturbine": "dist/cli.js"
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "engines": {
20
+ "node": ">=20"
21
+ },
22
+ "scripts": {
23
+ "build": "tsup",
24
+ "generate:schema": "node scripts/generate-schema-snapshot.mjs",
25
+ "typecheck": "tsc --noEmit",
26
+ "test": "vitest run",
27
+ "lint": "eslint .",
28
+ "verify": "npm run typecheck && npm run lint && npm run test"
29
+ },
30
+ "dependencies": {
31
+ "commander": "^15.0.0",
32
+ "zod": "4.4.3"
33
+ },
34
+ "devDependencies": {
35
+ "@eslint/js": "^9.39.4",
36
+ "@types/node": "^22.15.3",
37
+ "esbuild": "^0.28.0",
38
+ "eslint": "^9.13.0",
39
+ "tsup": "^8.3.0",
40
+ "typescript": "^5.6.3",
41
+ "typescript-eslint": "^8.62.0",
42
+ "vitest": "^4.1.8"
43
+ }
44
+ }