|
1 | 1 | { |
2 | | - "name": "workflow-automator", |
3 | | - "module": "src/tui/index.tsx", |
4 | | - "type": "module", |
5 | | - "private": true, |
| 2 | + "name": "@openstaticfish/actionflow", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "A terminal UI tool for managing and installing GitHub Actions workflow templates", |
| 5 | + "license": "MIT", |
| 6 | + "author": "OpenStaticFish <contact@openstaticfish.com>", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "https://github.com/openstaticfish/actionflow.git" |
| 10 | + }, |
| 11 | + "homepage": "https://github.com/openstaticfish/actionflow#readme", |
| 12 | + "bugs": { |
| 13 | + "url": "https://github.com/openstaticfish/actionflow/issues" |
| 14 | + }, |
| 15 | + "keywords": [ |
| 16 | + "github-actions", |
| 17 | + "workflow", |
| 18 | + "cli", |
| 19 | + "terminal", |
| 20 | + "tui", |
| 21 | + "automation", |
| 22 | + "ci-cd", |
| 23 | + "templates" |
| 24 | + ], |
| 25 | + "module": "./dist/index.js", |
| 26 | + "types": "./dist/index.d.ts", |
| 27 | + "exports": { |
| 28 | + ".": { |
| 29 | + "import": "./dist/index.js", |
| 30 | + "types": "./dist/index.d.ts" |
| 31 | + } |
| 32 | + }, |
6 | 33 | "bin": { |
7 | | - "workflow-automator": "./src/tui/index.tsx" |
| 34 | + "actionflow": "./dist/index.js", |
| 35 | + "af": "./dist/index.js" |
| 36 | + }, |
| 37 | + "files": [ |
| 38 | + "dist", |
| 39 | + "workflows", |
| 40 | + "README.md", |
| 41 | + "LICENSE" |
| 42 | + ], |
| 43 | + "engines": { |
| 44 | + "bun": ">=1.0.0" |
8 | 45 | }, |
9 | 46 | "scripts": { |
10 | 47 | "start": "bun run src/tui/index.tsx", |
11 | 48 | "build": "bun build src/tui/index.tsx --outdir=dist --target=bun", |
| 49 | + "build:types": "tsc --declaration --emitDeclarationOnly --outDir dist", |
| 50 | + "prepublishOnly": "bun run build && bun run build:types", |
12 | 51 | "test": "bun test" |
13 | 52 | }, |
14 | 53 | "devDependencies": { |
15 | 54 | "@types/bun": "latest", |
16 | | - "@types/react": "^18.2.0" |
| 55 | + "@types/react": "^18.2.0", |
| 56 | + "typescript": "^5.0.0" |
17 | 57 | }, |
18 | 58 | "peerDependencies": { |
19 | 59 | "typescript": "^5" |
20 | 60 | }, |
21 | 61 | "dependencies": { |
22 | 62 | "ink": "^5.0.0", |
23 | 63 | "react": "^18.2.0", |
| 64 | + "react-devtools-core": "^7.0.1", |
24 | 65 | "yaml": "^2.4.0" |
25 | 66 | } |
26 | 67 | } |
0 commit comments