@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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. 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
  [![npm version](https://img.shields.io/npm/v/@neosapience/typecast-js.svg?style=flat-square)](https://www.npmjs.com/package/@neosapience/typecast-js)
10
+ [![coverage](https://img.shields.io/badge/coverage-100%25-brightgreen.svg?style=flat-square)](../docs/coverage-policy.md)
10
11
  [![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg?style=flat-square)](LICENSE)
11
12
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.7-3178c6.svg?style=flat-square&logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
12
13
  [![Node.js](https://img.shields.io/badge/Node.js-%3E%3D16.0.0-339933.svg?style=flat-square&logo=node.js&logoColor=white)](https://nodejs.org/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neosapience/typecast-js",
3
- "version": "0.1.7",
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",