@neosapience/typecast-js 0.1.7 → 0.1.8
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 +1 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
Convert text to lifelike speech using AI-powered voices
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/@neosapience/typecast-js)
|
|
10
|
+
[](../docs/coverage-policy.md)
|
|
10
11
|
[](LICENSE)
|
|
11
12
|
[](https://www.typescriptlang.org/)
|
|
12
13
|
[](https://nodejs.org/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neosapience/typecast-js",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./lib/index.cjs",
|
|
6
6
|
"module": "./lib/index.js",
|
|
@@ -21,6 +21,8 @@
|
|
|
21
21
|
"build": "tsup",
|
|
22
22
|
"test": "vitest",
|
|
23
23
|
"test:coverage": "vitest run --coverage",
|
|
24
|
+
"coverage": "vitest run --coverage --exclude 'test/e2e/**'",
|
|
25
|
+
"test:e2e": "vitest run test/e2e",
|
|
24
26
|
"test:package": "bash scripts/test-package.sh",
|
|
25
27
|
"prepare": "npm run build",
|
|
26
28
|
"prepublishOnly": "npm run lint && vitest run && npm run build",
|
|
@@ -66,6 +68,7 @@
|
|
|
66
68
|
"@types/node": "^22.13.5",
|
|
67
69
|
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
|
68
70
|
"@typescript-eslint/parser": "^7.3.1",
|
|
71
|
+
"@vitest/coverage-v8": "^3.0.9",
|
|
69
72
|
"dotenv": "^16.4.7",
|
|
70
73
|
"eslint": "^8.57.0",
|
|
71
74
|
"prettier": "^3.2.5",
|