@pie-players/pie-tts 0.1.1 → 0.1.3
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/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/package.json +12 -12
package/dist/index.d.ts
CHANGED
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
* Core TTS interfaces and types for PIE Assessment Toolkit.
|
|
5
5
|
* No UI dependencies - pure TypeScript interfaces.
|
|
6
6
|
*/
|
|
7
|
-
export type { ITTSProvider, ITTSProviderImplementation, StandardTTSConfig, TTSConfig, TTSConfigExtensions, TTSFeature, TTSProviderCapabilities, } from "./provider-interface";
|
|
7
|
+
export type { ITTSProvider, ITTSProviderImplementation, StandardTTSConfig, TTSConfig, TTSConfigExtensions, TTSFeature, TTSProviderCapabilities, } from "./provider-interface.js";
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,YAAY,EACX,YAAY,EACZ,0BAA0B,EAC1B,iBAAiB,EACjB,SAAS,EACT,mBAAmB,EACnB,UAAU,EACV,uBAAuB,GACvB,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,YAAY,EACX,YAAY,EACZ,0BAA0B,EAC1B,iBAAiB,EACjB,SAAS,EACT,mBAAmB,EACnB,UAAU,EACV,uBAAuB,GACvB,MAAM,yBAAyB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-players/pie-tts",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"
|
|
5
|
-
"type": "module",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"author": "PIE Framework",
|
|
6
5
|
"main": "./dist/index.js",
|
|
7
|
-
"
|
|
6
|
+
"devDependencies": {
|
|
7
|
+
"typescript": "^5.7.2"
|
|
8
|
+
},
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
10
11
|
"types": "./dist/index.d.ts",
|
|
11
12
|
"import": "./dist/index.js"
|
|
12
13
|
}
|
|
13
14
|
},
|
|
15
|
+
"description": "TTS interfaces and types for PIE Assessment Toolkit - No UI dependencies",
|
|
14
16
|
"files": [
|
|
15
17
|
"dist",
|
|
16
18
|
"README.md"
|
|
17
19
|
],
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build": "tsc",
|
|
20
|
-
"typecheck": "tsc --noEmit"
|
|
21
|
-
},
|
|
22
20
|
"keywords": [
|
|
23
21
|
"pie",
|
|
24
22
|
"tts",
|
|
@@ -26,9 +24,11 @@
|
|
|
26
24
|
"interfaces",
|
|
27
25
|
"accessibility"
|
|
28
26
|
],
|
|
29
|
-
"author": "PIE Framework",
|
|
30
27
|
"license": "MIT",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc",
|
|
30
|
+
"typecheck": "tsc --noEmit"
|
|
31
|
+
},
|
|
32
|
+
"type": "module",
|
|
33
|
+
"types": "./dist/index.d.ts"
|
|
34
34
|
}
|