@untemps/vocal 1.3.2 → 1.3.4-beta.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +16 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [1.3.4-beta.1](https://github.com/untemps/vocal/compare/v1.3.3...v1.3.4-beta.1) (2026-05-15)
2
+
3
+ ## [1.3.3](https://github.com/untemps/vocal/compare/v1.3.2...v1.3.3) (2026-05-15)
4
+
1
5
  ## [1.3.2](https://github.com/untemps/vocal/compare/v1.3.1...v1.3.2) (2026-05-15)
2
6
 
3
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@untemps/vocal",
3
- "version": "1.3.2",
3
+ "version": "1.3.4-beta.1",
4
4
  "description": "Class wrapped around the SpeechRecognition Web API",
5
5
  "repository": "git@github.com:untemps/vocal.git",
6
6
  "keywords": [
@@ -29,19 +29,32 @@
29
29
  "main": "dist/index.js",
30
30
  "module": "dist/index.es.js",
31
31
  "types": "dist/index.d.ts",
32
+ "exports": {
33
+ ".": {
34
+ "types": "./dist/index.d.ts",
35
+ "import": "./dist/index.es.js",
36
+ "require": "./dist/index.js",
37
+ "default": "./dist/index.es.js"
38
+ }
39
+ },
32
40
  "devDependencies": {
33
41
  "@commitlint/cli": "^21.0.1",
34
42
  "@commitlint/config-conventional": "^21.0.1",
43
+ "@eslint/js": "^10.0.1",
35
44
  "@semantic-release/changelog": "^6.0.3",
36
45
  "@semantic-release/git": "^10.0.1",
37
46
  "@semantic-release/github": "^12.0.6",
38
47
  "@testing-library/jest-dom": "^6.9.1",
39
48
  "@vitest/coverage-v8": "^4.1.5",
49
+ "eslint": "^10.3.0",
50
+ "eslint-config-prettier": "^10.1.8",
51
+ "globals": "^17.6.0",
40
52
  "husky": "^9.1.7",
41
53
  "jsdom": "^29.1.1",
42
54
  "prettier": "^3.8.3",
43
55
  "semantic-release": "^25.0.3",
44
56
  "typescript": "^6.0.3",
57
+ "typescript-eslint": "^8.59.3",
45
58
  "vite": "^8.0.13",
46
59
  "vite-plugin-dts": "^5.0.0",
47
60
  "vitest": "^4.1.5"
@@ -99,7 +112,8 @@
99
112
  "test:ci": "vitest run --coverage",
100
113
  "build": "vite build",
101
114
  "typecheck": "tsc --noEmit",
115
+ "lint": "eslint src/ vitest.setup.ts",
102
116
  "prepare": "husky",
103
- "prettier": "prettier \"*/**/*.js\" --ignore-path ./.prettierignore --write"
117
+ "prettier": "prettier \"src/**/*.{ts,js}\" vitest.setup.ts --ignore-path ./.prettierignore --write"
104
118
  }
105
119
  }