@stellartech/voice-widget-directus 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 (2) hide show
  1. package/dist/index.js +1702 -0
  2. package/package.json +50 -0
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@stellartech/voice-widget-directus",
3
+ "description": "Voice generation widget with model/voice selection and audio preview for Directus",
4
+ "icon": "mic",
5
+ "version": "1.0.0",
6
+ "license": "MIT",
7
+ "readme": "README.md",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/StellarTechLab/directus-misc.git",
11
+ "directory": "extensions/voice-widget"
12
+ },
13
+ "type": "module",
14
+ "keywords": [
15
+ "directus",
16
+ "directus-extension",
17
+ "directus-extension-interface",
18
+ "voice",
19
+ "audio",
20
+ "tts",
21
+ "widget"
22
+ ],
23
+ "files": [
24
+ "dist",
25
+ "README.md"
26
+ ],
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "directus:extension": {
31
+ "type": "interface",
32
+ "path": "dist/index.js",
33
+ "source": "src/index.ts",
34
+ "host": "^11.0.0"
35
+ },
36
+ "scripts": {
37
+ "build": "directus-extension build --no-minify",
38
+ "build:minify": "directus-extension build",
39
+ "dev": "directus-extension build -w --no-minify"
40
+ },
41
+ "devDependencies": {
42
+ "@directus/extensions-sdk": "^13.0.1",
43
+ "@types/node": "^22.13.4",
44
+ "typescript": "^5.7.3",
45
+ "vue": "^3.4.0"
46
+ },
47
+ "peerDependencies": {
48
+ "vue": "^3.4.0"
49
+ }
50
+ }