@red-hat-developer-hub/translations-cli 0.0.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.
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@red-hat-developer-hub/translations-cli",
3
+ "description": "CLI tools for translation workflows with our TMS.",
4
+ "version": "0.0.1",
5
+ "backstage": {
6
+ "role": "cli"
7
+ },
8
+ "homepage": "https://red.ht/rhdh",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/redhat-developer/rhdh-plugins",
12
+ "directory": "workspaces/translations/packages/cli"
13
+ },
14
+ "keywords": [
15
+ "backstage"
16
+ ],
17
+ "license": "Apache-2.0",
18
+ "main": "dist/index.cjs.js",
19
+ "scripts": {
20
+ "build": "backstage-cli package build",
21
+ "lint": "backstage-cli package lint",
22
+ "test": "vitest run",
23
+ "test:watch": "vitest",
24
+ "test:quick": "./test/quick-test.sh",
25
+ "test:integration": "./test/integration-test.sh",
26
+ "test:real-repo": "./test/real-repo-test.sh",
27
+ "test:workflow": "tsx test/workflow-verification.ts",
28
+ "test:manual": "echo 'See test/manual-test-checklist.md for manual testing steps'",
29
+ "clean": "backstage-cli package clean",
30
+ "start": "nodemon --",
31
+ "dev": "ts-node src/index.ts",
32
+ "dev:help": "ts-node src/index.ts --help",
33
+ "test:local": "npm run build && node bin/translations-cli"
34
+ },
35
+ "bin": "bin/translations-cli",
36
+ "files": [
37
+ "bin",
38
+ "dist/**/*.js"
39
+ ],
40
+ "engines": {
41
+ "node": ">=20"
42
+ },
43
+ "dependencies": {
44
+ "@backstage/cli": "^0.34.4",
45
+ "chalk": "^4.0.0",
46
+ "commander": "^9.1.0",
47
+ "fs-extra": "^10.1.0",
48
+ "glob": "^8.0.0"
49
+ },
50
+ "nodemonConfig": {
51
+ "watch": "./src",
52
+ "exec": "bin/translations-cli",
53
+ "ext": "ts"
54
+ },
55
+ "devDependencies": {
56
+ "@types/fs-extra": "^9.0.13",
57
+ "@types/glob": "^8.0.0",
58
+ "@types/node": "^18.19.34",
59
+ "chalk": "^4.1.2",
60
+ "commander": "^12.0.0",
61
+ "ts-node": "^10.9.2",
62
+ "tsx": "^4.21.0",
63
+ "vitest": "^1.0.0"
64
+ }
65
+ }