fireflies-api 0.5.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 (47) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +64 -0
  3. package/dist/action-items-CC9yUxHY.d.cts +380 -0
  4. package/dist/action-items-CC9yUxHY.d.ts +380 -0
  5. package/dist/cli/index.cjs +3909 -0
  6. package/dist/cli/index.cjs.map +1 -0
  7. package/dist/cli/index.d.cts +2 -0
  8. package/dist/cli/index.d.ts +2 -0
  9. package/dist/cli/index.js +3906 -0
  10. package/dist/cli/index.js.map +1 -0
  11. package/dist/index.cjs +3389 -0
  12. package/dist/index.cjs.map +1 -0
  13. package/dist/index.d.cts +966 -0
  14. package/dist/index.d.ts +966 -0
  15. package/dist/index.js +3344 -0
  16. package/dist/index.js.map +1 -0
  17. package/dist/middleware/express.cjs +2491 -0
  18. package/dist/middleware/express.cjs.map +1 -0
  19. package/dist/middleware/express.d.cts +36 -0
  20. package/dist/middleware/express.d.ts +36 -0
  21. package/dist/middleware/express.js +2489 -0
  22. package/dist/middleware/express.js.map +1 -0
  23. package/dist/middleware/fastify.cjs +2501 -0
  24. package/dist/middleware/fastify.cjs.map +1 -0
  25. package/dist/middleware/fastify.d.cts +66 -0
  26. package/dist/middleware/fastify.d.ts +66 -0
  27. package/dist/middleware/fastify.js +2498 -0
  28. package/dist/middleware/fastify.js.map +1 -0
  29. package/dist/middleware/hono.cjs +2493 -0
  30. package/dist/middleware/hono.cjs.map +1 -0
  31. package/dist/middleware/hono.d.cts +37 -0
  32. package/dist/middleware/hono.d.ts +37 -0
  33. package/dist/middleware/hono.js +2490 -0
  34. package/dist/middleware/hono.js.map +1 -0
  35. package/dist/schemas/index.cjs +307 -0
  36. package/dist/schemas/index.cjs.map +1 -0
  37. package/dist/schemas/index.d.cts +926 -0
  38. package/dist/schemas/index.d.ts +926 -0
  39. package/dist/schemas/index.js +268 -0
  40. package/dist/schemas/index.js.map +1 -0
  41. package/dist/speaker-analytics-Dr46LKyP.d.ts +275 -0
  42. package/dist/speaker-analytics-l45LXqO1.d.cts +275 -0
  43. package/dist/types-BX-3JcRI.d.cts +41 -0
  44. package/dist/types-C_XxdRd1.d.cts +1546 -0
  45. package/dist/types-CaHcwnKw.d.ts +41 -0
  46. package/dist/types-DIPZmUl3.d.ts +1546 -0
  47. package/package.json +126 -0
package/package.json ADDED
@@ -0,0 +1,126 @@
1
+ {
2
+ "name": "fireflies-api",
3
+ "version": "0.5.0",
4
+ "type": "module",
5
+ "description": "TypeScript SDK for Fireflies.ai API with Realtime WebSocket support",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./dist/index.d.ts",
9
+ "import": "./dist/index.js",
10
+ "require": "./dist/index.cjs"
11
+ },
12
+ "./schemas": {
13
+ "types": "./dist/schemas/index.d.ts",
14
+ "import": "./dist/schemas/index.js",
15
+ "require": "./dist/schemas/index.cjs"
16
+ },
17
+ "./express": {
18
+ "types": "./dist/middleware/express.d.ts",
19
+ "import": "./dist/middleware/express.js",
20
+ "require": "./dist/middleware/express.cjs"
21
+ },
22
+ "./fastify": {
23
+ "types": "./dist/middleware/fastify.d.ts",
24
+ "import": "./dist/middleware/fastify.js",
25
+ "require": "./dist/middleware/fastify.cjs"
26
+ },
27
+ "./hono": {
28
+ "types": "./dist/middleware/hono.d.ts",
29
+ "import": "./dist/middleware/hono.js",
30
+ "require": "./dist/middleware/hono.cjs"
31
+ }
32
+ },
33
+ "main": "./dist/index.cjs",
34
+ "module": "./dist/index.js",
35
+ "types": "./dist/index.d.ts",
36
+ "files": [
37
+ "dist"
38
+ ],
39
+ "bin": {
40
+ "fireflies": "./dist/cli/index.js"
41
+ },
42
+ "scripts": {
43
+ "build": "tsup",
44
+ "test": "vitest run",
45
+ "test:watch": "vitest",
46
+ "test:live": "LIVE_TEST=1 vitest run --config vitest.live.config.ts",
47
+ "check": "biome check .",
48
+ "fix": "biome check --write .",
49
+ "typecheck": "tsc --noEmit",
50
+ "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
51
+ "changelog:preview": "conventional-changelog -p angular -r 1",
52
+ "docs": "typedoc",
53
+ "docs:watch": "typedoc --watch",
54
+ "release:patch": "commit-and-tag-version --release-as patch && git push --follow-tags",
55
+ "release:minor": "commit-and-tag-version --release-as minor && git push --follow-tags",
56
+ "release:major": "commit-and-tag-version --release-as major && git push --follow-tags",
57
+ "release:dry-run": "commit-and-tag-version --dry-run",
58
+ "release:first": "commit-and-tag-version --first-release && git push --follow-tags"
59
+ },
60
+ "engines": {
61
+ "node": ">=18.0.0"
62
+ },
63
+ "keywords": [
64
+ "fireflies",
65
+ "fireflies.ai",
66
+ "transcription",
67
+ "meeting",
68
+ "api",
69
+ "sdk",
70
+ "realtime",
71
+ "websocket",
72
+ "webhook",
73
+ "middleware"
74
+ ],
75
+ "author": "",
76
+ "license": "MIT",
77
+ "repository": {
78
+ "type": "git",
79
+ "url": "https://github.com/BjoernSchotte/fireflies-api"
80
+ },
81
+ "bugs": {
82
+ "url": "https://github.com/BjoernSchotte/fireflies-api/issues"
83
+ },
84
+ "homepage": "https://github.com/BjoernSchotte/fireflies-api#readme",
85
+ "dependencies": {
86
+ "commander": "^13.0.0",
87
+ "socket.io-client": "^4.8.3"
88
+ },
89
+ "devDependencies": {
90
+ "@biomejs/biome": "^2.0.0",
91
+ "@hono/node-server": "^1.19.9",
92
+ "@types/express": "^5.0.6",
93
+ "commit-and-tag-version": "^12.6.1",
94
+ "conventional-changelog-cli": "^5.0.0",
95
+ "express": "^5.2.1",
96
+ "fastify": "^5.7.2",
97
+ "hono": "^4.11.7",
98
+ "msw": "^2.0.0",
99
+ "socket.io": "^4.8.3",
100
+ "tsup": "^8.0.0",
101
+ "typedoc": "^0.28.16",
102
+ "typescript": "^5.0.0",
103
+ "vitest": "^3.0.0",
104
+ "zod": "^4.3.6"
105
+ },
106
+ "peerDependencies": {
107
+ "express": "^4.0.0 || ^5.0.0",
108
+ "fastify": "^4.0.0 || ^5.0.0",
109
+ "hono": "^3.0.0 || ^4.0.0",
110
+ "zod": "^3.25.0 || ^4.0.0"
111
+ },
112
+ "peerDependenciesMeta": {
113
+ "express": {
114
+ "optional": true
115
+ },
116
+ "fastify": {
117
+ "optional": true
118
+ },
119
+ "hono": {
120
+ "optional": true
121
+ },
122
+ "zod": {
123
+ "optional": true
124
+ }
125
+ }
126
+ }