@jonbito/jira-markdown 0.1.2

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 (3) hide show
  1. package/README.md +396 -0
  2. package/dist/cli.js +25482 -0
  3. package/package.json +52 -0
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@jonbito/jira-markdown",
3
+ "author": "Jonathan Bishop",
4
+ "version": "0.1.2",
5
+ "description": "Bun CLI for syncing markdown files with Jira issues.",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/jonbito/jira-markdown"
9
+ },
10
+ "homepage": "https://github.com/jonbito/jira-markdown#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/jonbito/jira-markdown/issues"
13
+ },
14
+ "type": "module",
15
+ "bin": {
16
+ "jira-markdown": "dist/cli.js"
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "jira-markdown.config.example.json"
22
+ ],
23
+ "scripts": {
24
+ "auth": "bun run src/cli.ts auth",
25
+ "build": "bun build src/cli.ts --target bun --outdir dist",
26
+ "config": "bun run src/cli.ts config",
27
+ "dev": "bun run src/cli.ts",
28
+ "inspect": "bun run src/cli.ts inspect",
29
+ "prepack": "bun run build",
30
+ "pull": "bun run src/cli.ts pull",
31
+ "push": "bun run src/cli.ts push",
32
+ "sync": "bun run src/cli.ts sync",
33
+ "sprints": "bun run src/cli.ts sprints",
34
+ "test": "bun test",
35
+ "typecheck": "tsc --noEmit"
36
+ },
37
+ "dependencies": {
38
+ "commander": "^14.0.0",
39
+ "gray-matter": "^4.0.3",
40
+ "zod": "^4.1.11"
41
+ },
42
+ "devDependencies": {
43
+ "@types/bun": "^1.3.0",
44
+ "typescript": "^5.9.2"
45
+ },
46
+ "engines": {
47
+ "bun": ">=1.3.9"
48
+ },
49
+ "publishConfig": {
50
+ "access": "public"
51
+ }
52
+ }