-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@openstaticfish/actionflow",
"version": "0.1.3",
"description": "A terminal UI tool for managing and installing GitHub Actions workflow templates",
"license": "MIT",
"author": "OpenStaticFish <contact@openstaticfish.com>",
"repository": {
"type": "git",
"url": "https://github.com/openstaticfish/actionflow.git"
},
"homepage": "https://github.com/openstaticfish/actionflow#readme",
"bugs": {
"url": "https://github.com/openstaticfish/actionflow/issues"
},
"keywords": [
"github-actions",
"workflow",
"cli",
"terminal",
"tui",
"automation",
"ci-cd",
"templates"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"actionflow": "./dist/index.js",
"af": "./dist/index.js"
},
"files": [
"dist",
"workflows",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"postinstall": "bun run build:prod",
"start": "bun run src/tui/index.tsx",
"build": "bun build src/tui/index.tsx --outdir=dist --target=bun",
"build:prod": "bun build src/tui/index.tsx --outdir=dist --target=bun && echo '#!/usr/bin/env bun' | cat - dist/index.js > dist/index.js.tmp && mv dist/index.js.tmp dist/index.js && chmod +x dist/index.js",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"prepublishOnly": "bun run build:prod && bun run build:types",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.13",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"ink": "^6.6.0",
"react": "^19.2.4",
"react-devtools-core": "^6.1.1",
"yaml": "^2.4.0"
}
}