vidgen 0.0.1

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 (61) hide show
  1. package/README.md +781 -0
  2. package/bin/dev.cmd +3 -0
  3. package/bin/dev.js +5 -0
  4. package/bin/run.cmd +3 -0
  5. package/bin/run.js +5 -0
  6. package/dist/commands/db/init.d.ts +6 -0
  7. package/dist/commands/db/init.js +18 -0
  8. package/dist/commands/generate/stt.d.ts +13 -0
  9. package/dist/commands/generate/stt.js +73 -0
  10. package/dist/commands/generate/tts.d.ts +11 -0
  11. package/dist/commands/generate/tts.js +30 -0
  12. package/dist/commands/index/chunk.d.ts +11 -0
  13. package/dist/commands/index/chunk.js +55 -0
  14. package/dist/commands/index/describe.d.ts +11 -0
  15. package/dist/commands/index/describe.js +29 -0
  16. package/dist/commands/index/embed.d.ts +11 -0
  17. package/dist/commands/index/embed.js +29 -0
  18. package/dist/commands/index/save.d.ts +10 -0
  19. package/dist/commands/index/save.js +24 -0
  20. package/dist/commands/project/create.d.ts +11 -0
  21. package/dist/commands/project/create.js +63 -0
  22. package/dist/commands/project/delete.d.ts +9 -0
  23. package/dist/commands/project/delete.js +31 -0
  24. package/dist/commands/project/get.d.ts +9 -0
  25. package/dist/commands/project/get.js +39 -0
  26. package/dist/commands/project/list.d.ts +6 -0
  27. package/dist/commands/project/list.js +26 -0
  28. package/dist/commands/project/validate.d.ts +10 -0
  29. package/dist/commands/project/validate.js +29 -0
  30. package/dist/commands/search/asset.d.ts +12 -0
  31. package/dist/commands/search/asset.js +35 -0
  32. package/dist/commands/segment/add.d.ts +11 -0
  33. package/dist/commands/segment/add.js +49 -0
  34. package/dist/commands/segment/delete.d.ts +9 -0
  35. package/dist/commands/segment/delete.js +29 -0
  36. package/dist/commands/segment/list.d.ts +9 -0
  37. package/dist/commands/segment/list.js +33 -0
  38. package/dist/commands/segment/update.d.ts +13 -0
  39. package/dist/commands/segment/update.js +50 -0
  40. package/dist/commands/video/caption.d.ts +12 -0
  41. package/dist/commands/video/caption.js +43 -0
  42. package/dist/commands/video/trim.d.ts +13 -0
  43. package/dist/commands/video/trim.js +52 -0
  44. package/dist/index.d.ts +1 -0
  45. package/dist/index.js +1 -0
  46. package/dist/lib/db.d.ts +7 -0
  47. package/dist/lib/db.js +39 -0
  48. package/dist/lib/stt/deepgram-to-combo.d.ts +2 -0
  49. package/dist/lib/stt/deepgram-to-combo.js +49 -0
  50. package/dist/lib/stt/deepgram.d.ts +18 -0
  51. package/dist/lib/stt/deepgram.js +71 -0
  52. package/dist/lib/stt/detect-language.d.ts +2 -0
  53. package/dist/lib/stt/detect-language.js +31 -0
  54. package/dist/lib/stt/index.d.ts +50 -0
  55. package/dist/lib/stt/index.js +50 -0
  56. package/dist/lib/stt/types.d.ts +65 -0
  57. package/dist/lib/stt/types.js +1 -0
  58. package/dist/lib/types.d.ts +131 -0
  59. package/dist/lib/types.js +1 -0
  60. package/oclif.manifest.json +874 -0
  61. package/package.json +79 -0
package/package.json ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "vidgen",
3
+ "description": "A CLI for all video tasks",
4
+ "version": "0.0.1",
5
+ "author": "Dany Boza",
6
+ "bin": {
7
+ "vidgen": "./bin/run.js"
8
+ },
9
+ "bugs": "https://github.com/xo-o/vidgen/issues",
10
+ "dependencies": {
11
+ "@deepgram/sdk": "^4.11.2",
12
+ "@libsql/client": "^0.17.0",
13
+ "@oclif/core": "^4",
14
+ "@oclif/plugin-help": "^6",
15
+ "@oclif/plugin-plugins": "^5",
16
+ "tinyld": "^1.3.4",
17
+ "uuid": "^13.0.0"
18
+ },
19
+ "devDependencies": {
20
+ "@eslint/compat": "^1",
21
+ "@oclif/prettier-config": "^0.2.1",
22
+ "@oclif/test": "^4",
23
+ "@types/chai": "^4",
24
+ "@types/mocha": "^10",
25
+ "@types/node": "^18",
26
+ "@types/uuid": "^10.0.0",
27
+ "@types/ws": "^8.18.1",
28
+ "chai": "^4",
29
+ "eslint": "^9",
30
+ "eslint-config-oclif": "^6",
31
+ "eslint-config-prettier": "^10",
32
+ "mocha": "^11",
33
+ "oclif": "^4",
34
+ "shx": "^0.3.3",
35
+ "ts-node": "^10",
36
+ "typescript": "^5"
37
+ },
38
+ "engines": {
39
+ "node": ">=18.0.0"
40
+ },
41
+ "files": [
42
+ "./bin",
43
+ "./dist",
44
+ "./oclif.manifest.json"
45
+ ],
46
+ "homepage": "https://github.com/xo-o/vidgen",
47
+ "keywords": [
48
+ "oclif"
49
+ ],
50
+ "license": "MIT",
51
+ "main": "dist/index.js",
52
+ "type": "module",
53
+ "oclif": {
54
+ "bin": "vidgen",
55
+ "dirname": "vidgen",
56
+ "commands": "./dist/commands",
57
+ "plugins": [
58
+ "@oclif/plugin-help",
59
+ "@oclif/plugin-plugins"
60
+ ],
61
+ "topicSeparator": " ",
62
+ "topics": {
63
+ "hello": {
64
+ "description": "Say hello to the world and others"
65
+ }
66
+ }
67
+ },
68
+ "repository": "xo-o/vidgen",
69
+ "scripts": {
70
+ "build": "shx rm -rf dist && tsc -b",
71
+ "lint": "eslint",
72
+ "postpack": "shx rm -f oclif.manifest.json",
73
+ "posttest": "npm run lint",
74
+ "prepack": "oclif manifest && oclif readme",
75
+ "test": "mocha --forbid-only \"test/**/*.test.ts\"",
76
+ "version": "oclif readme && git add README.md"
77
+ },
78
+ "types": "dist/index.d.ts"
79
+ }