awaitly-visualizer 1.0.0

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 (43) hide show
  1. package/dist/index.browser.cjs +1677 -0
  2. package/dist/index.browser.cjs.map +1 -0
  3. package/dist/index.browser.d.cts +166 -0
  4. package/dist/index.browser.d.ts +166 -0
  5. package/dist/index.browser.js +1677 -0
  6. package/dist/index.browser.js.map +1 -0
  7. package/dist/index.cjs +1680 -0
  8. package/dist/index.cjs.map +1 -0
  9. package/dist/index.d.cts +242 -0
  10. package/dist/index.d.ts +242 -0
  11. package/dist/index.js +1680 -0
  12. package/dist/index.js.map +1 -0
  13. package/dist/kroki/fetch.cjs +3 -0
  14. package/dist/kroki/fetch.cjs.map +1 -0
  15. package/dist/kroki/fetch.d.cts +86 -0
  16. package/dist/kroki/fetch.d.ts +86 -0
  17. package/dist/kroki/fetch.js +3 -0
  18. package/dist/kroki/fetch.js.map +1 -0
  19. package/dist/notifiers/discord.cjs +3 -0
  20. package/dist/notifiers/discord.cjs.map +1 -0
  21. package/dist/notifiers/discord.d.cts +70 -0
  22. package/dist/notifiers/discord.d.ts +70 -0
  23. package/dist/notifiers/discord.js +3 -0
  24. package/dist/notifiers/discord.js.map +1 -0
  25. package/dist/notifiers/slack.cjs +38 -0
  26. package/dist/notifiers/slack.cjs.map +1 -0
  27. package/dist/notifiers/slack.d.cts +95 -0
  28. package/dist/notifiers/slack.d.ts +95 -0
  29. package/dist/notifiers/slack.js +38 -0
  30. package/dist/notifiers/slack.js.map +1 -0
  31. package/dist/notifiers/webhook.cjs +3 -0
  32. package/dist/notifiers/webhook.cjs.map +1 -0
  33. package/dist/notifiers/webhook.d.cts +115 -0
  34. package/dist/notifiers/webhook.d.ts +115 -0
  35. package/dist/notifiers/webhook.js +3 -0
  36. package/dist/notifiers/webhook.js.map +1 -0
  37. package/dist/performance-analyzer-B5VF5b1F.d.ts +663 -0
  38. package/dist/performance-analyzer-BNwE4AiO.d.cts +663 -0
  39. package/dist/types-BIZSmXif.d.ts +350 -0
  40. package/dist/types-BnWc9Wlr.d.cts +350 -0
  41. package/dist/url-PkfQz4V5.d.cts +750 -0
  42. package/dist/url-PkfQz4V5.d.ts +750 -0
  43. package/package.json +105 -0
package/package.json ADDED
@@ -0,0 +1,105 @@
1
+ {
2
+ "name": "awaitly-visualizer",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "Visualization and rendering for awaitly workflows - Mermaid diagrams, ASCII art, HTML, and more",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "sideEffects": false,
10
+ "exports": {
11
+ ".": {
12
+ "browser": {
13
+ "types": "./dist/index.browser.d.ts",
14
+ "import": "./dist/index.browser.js"
15
+ },
16
+ "types": "./dist/index.d.ts",
17
+ "import": "./dist/index.js",
18
+ "require": "./dist/index.cjs"
19
+ },
20
+ "./kroki-fetch": {
21
+ "types": "./dist/kroki/fetch.d.ts",
22
+ "import": "./dist/kroki/fetch.js",
23
+ "require": "./dist/kroki/fetch.cjs"
24
+ },
25
+ "./notifiers/slack": {
26
+ "types": "./dist/notifiers/slack.d.ts",
27
+ "import": "./dist/notifiers/slack.js",
28
+ "require": "./dist/notifiers/slack.cjs"
29
+ },
30
+ "./notifiers/discord": {
31
+ "types": "./dist/notifiers/discord.d.ts",
32
+ "import": "./dist/notifiers/discord.js",
33
+ "require": "./dist/notifiers/discord.cjs"
34
+ },
35
+ "./notifiers/webhook": {
36
+ "types": "./dist/notifiers/webhook.d.ts",
37
+ "import": "./dist/notifiers/webhook.js",
38
+ "require": "./dist/notifiers/webhook.cjs"
39
+ }
40
+ },
41
+ "files": [
42
+ "dist",
43
+ "README.md"
44
+ ],
45
+ "scripts": {
46
+ "build": "tsup",
47
+ "type-check": "tsc --noEmit",
48
+ "test": "vitest run",
49
+ "test:watch": "vitest watch",
50
+ "lint": "eslint .",
51
+ "clean": "rm -rf dist",
52
+ "quality": "pnpm type-check && pnpm test && pnpm lint"
53
+ },
54
+ "keywords": [
55
+ "awaitly",
56
+ "workflow",
57
+ "visualization",
58
+ "mermaid",
59
+ "ascii",
60
+ "diagram",
61
+ "kroki",
62
+ "slack",
63
+ "discord",
64
+ "webhook",
65
+ "notifier"
66
+ ],
67
+ "author": "Jag Reehal <jag@jagreehal.com>",
68
+ "homepage": "https://github.com/jagreehal/awaitly#readme",
69
+ "bugs": {
70
+ "url": "https://github.com/jagreehal/awaitly/issues"
71
+ },
72
+ "repository": {
73
+ "type": "git",
74
+ "url": "git+https://github.com/jagreehal/awaitly.git"
75
+ },
76
+ "license": "MIT",
77
+ "peerDependencies": {
78
+ "awaitly": "workspace:^"
79
+ },
80
+ "dependencies": {
81
+ "pako": "^2.1.0"
82
+ },
83
+ "optionalDependencies": {
84
+ "@slack/web-api": "^7.0.0"
85
+ },
86
+ "devDependencies": {
87
+ "@total-typescript/ts-reset": "^0.6.1",
88
+ "@total-typescript/tsconfig": "^1.0.4",
89
+ "@types/node": "^25.1.0",
90
+ "@types/pako": "^2.0.3",
91
+ "awaitly": "workspace:^",
92
+ "jsdom": "^27.4.0",
93
+ "mermaid": "^11.12.2",
94
+ "tsup": "^8.5.1",
95
+ "typescript": "^5.9.3",
96
+ "vitest": "^4.0.18"
97
+ },
98
+ "publishConfig": {
99
+ "access": "public",
100
+ "registry": "https://registry.npmjs.org/"
101
+ },
102
+ "engines": {
103
+ "node": ">=22"
104
+ }
105
+ }