@mathvoice/react 0.1.0

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/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@mathvoice/react",
3
+ "version": "0.1.0",
4
+ "description": "MathVoice Studio as a controlled React component — voice-driven LaTeX editing with a three-tier intent pipeline",
5
+ "keywords": ["math", "latex", "voice", "accessibility", "katex", "react"],
6
+ "license": "MIT",
7
+ "author": "MathVoice <hello@mathvoice.app>",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/freewheelerz/mathvoice.git",
11
+ "directory": "packages/react"
12
+ },
13
+ "main": "./dist/index.js",
14
+ "module": "./dist/index.mjs",
15
+ "types": "./dist/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/index.d.ts",
19
+ "import": "./dist/index.mjs",
20
+ "require": "./dist/index.js"
21
+ },
22
+ "./style.css": "./dist/style.css"
23
+ },
24
+ "files": ["dist", "README.md"],
25
+ "scripts": {
26
+ "build": "tsup",
27
+ "dev": "tsup --watch",
28
+ "typecheck": "tsc --noEmit"
29
+ },
30
+ "peerDependencies": {
31
+ "react": "^17.0.0 || ^18.0.0",
32
+ "react-dom": "^17.0.0 || ^18.0.0"
33
+ },
34
+ "dependencies": {
35
+ "katex": "^0.16.9"
36
+ },
37
+ "devDependencies": {
38
+ "@types/katex": "^0.16.7",
39
+ "@types/react": "^18.3.0",
40
+ "@types/react-dom": "^18.3.0",
41
+ "tsup": "^8.0.0",
42
+ "typescript": "^5.4.0"
43
+ }
44
+ }