-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.66 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@syntropy-labs/react-web-speech",
"version": "0.1.2",
"type": "module",
"description": "A React library for the Web Speech API with first-class DX: mic permissions, listening states, browser compatibility, and cursor-aware text insertion.",
"author": "SyntropyLabs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SyntropyLabs/react-web-speech.git"
},
"homepage": "https://github.com/SyntropyLabs/react-web-speech#readme",
"bugs": {
"url": "https://github.com/SyntropyLabs/react-web-speech/issues"
},
"keywords": [
"react",
"speech",
"speech-to-text",
"speech-recognition",
"web-speech-api",
"voice",
"microphone",
"hooks",
"typescript"
],
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "yarn build",
"prepare": "husky",
"changeset": "changeset",
"changeset:version": "changeset version",
"release": "yarn build && changeset publish"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.0",
"@eslint/js": "^9.0.0",
"@rollup/plugin-babel": "^6.1.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^3.0.0",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"happy-dom": "^16.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsdown": "^0.18.1",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
}
}