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.
- package/README.md +781 -0
- package/bin/dev.cmd +3 -0
- package/bin/dev.js +5 -0
- package/bin/run.cmd +3 -0
- package/bin/run.js +5 -0
- package/dist/commands/db/init.d.ts +6 -0
- package/dist/commands/db/init.js +18 -0
- package/dist/commands/generate/stt.d.ts +13 -0
- package/dist/commands/generate/stt.js +73 -0
- package/dist/commands/generate/tts.d.ts +11 -0
- package/dist/commands/generate/tts.js +30 -0
- package/dist/commands/index/chunk.d.ts +11 -0
- package/dist/commands/index/chunk.js +55 -0
- package/dist/commands/index/describe.d.ts +11 -0
- package/dist/commands/index/describe.js +29 -0
- package/dist/commands/index/embed.d.ts +11 -0
- package/dist/commands/index/embed.js +29 -0
- package/dist/commands/index/save.d.ts +10 -0
- package/dist/commands/index/save.js +24 -0
- package/dist/commands/project/create.d.ts +11 -0
- package/dist/commands/project/create.js +63 -0
- package/dist/commands/project/delete.d.ts +9 -0
- package/dist/commands/project/delete.js +31 -0
- package/dist/commands/project/get.d.ts +9 -0
- package/dist/commands/project/get.js +39 -0
- package/dist/commands/project/list.d.ts +6 -0
- package/dist/commands/project/list.js +26 -0
- package/dist/commands/project/validate.d.ts +10 -0
- package/dist/commands/project/validate.js +29 -0
- package/dist/commands/search/asset.d.ts +12 -0
- package/dist/commands/search/asset.js +35 -0
- package/dist/commands/segment/add.d.ts +11 -0
- package/dist/commands/segment/add.js +49 -0
- package/dist/commands/segment/delete.d.ts +9 -0
- package/dist/commands/segment/delete.js +29 -0
- package/dist/commands/segment/list.d.ts +9 -0
- package/dist/commands/segment/list.js +33 -0
- package/dist/commands/segment/update.d.ts +13 -0
- package/dist/commands/segment/update.js +50 -0
- package/dist/commands/video/caption.d.ts +12 -0
- package/dist/commands/video/caption.js +43 -0
- package/dist/commands/video/trim.d.ts +13 -0
- package/dist/commands/video/trim.js +52 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/lib/db.d.ts +7 -0
- package/dist/lib/db.js +39 -0
- package/dist/lib/stt/deepgram-to-combo.d.ts +2 -0
- package/dist/lib/stt/deepgram-to-combo.js +49 -0
- package/dist/lib/stt/deepgram.d.ts +18 -0
- package/dist/lib/stt/deepgram.js +71 -0
- package/dist/lib/stt/detect-language.d.ts +2 -0
- package/dist/lib/stt/detect-language.js +31 -0
- package/dist/lib/stt/index.d.ts +50 -0
- package/dist/lib/stt/index.js +50 -0
- package/dist/lib/stt/types.d.ts +65 -0
- package/dist/lib/stt/types.js +1 -0
- package/dist/lib/types.d.ts +131 -0
- package/dist/lib/types.js +1 -0
- package/oclif.manifest.json +874 -0
- 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
|
+
}
|