@mathvoice/react 0.1.0 → 0.1.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.
- package/LICENSE +62 -0
- package/package.json +15 -5
package/LICENSE
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
MathVoice Dual Licence
|
|
2
|
+
======================
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2026 MathVoice Contributors. All rights reserved.
|
|
5
|
+
|
|
6
|
+
This software is available under two licences. Choose the one that applies
|
|
7
|
+
to your use:
|
|
8
|
+
|
|
9
|
+
────────────────────────────────────────────────────────────────────────────────
|
|
10
|
+
LICENCE A — Non-Commercial Use (MIT terms)
|
|
11
|
+
────────────────────────────────────────────────────────────────────────────────
|
|
12
|
+
|
|
13
|
+
For non-commercial use only — including individual educational use, academic
|
|
14
|
+
research, personal projects, and open-source projects that do not generate
|
|
15
|
+
revenue — this software is provided under the following MIT terms:
|
|
16
|
+
|
|
17
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
18
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
19
|
+
in the Software without restriction, including without limitation the rights
|
|
20
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
21
|
+
copies of the Software, subject to the following conditions:
|
|
22
|
+
|
|
23
|
+
1. The above copyright notice and this permission notice shall be included in
|
|
24
|
+
all copies or substantial portions of the Software.
|
|
25
|
+
|
|
26
|
+
2. The use is non-commercial. "Non-commercial" means not primarily intended
|
|
27
|
+
for or directed toward commercial advantage or monetary compensation.
|
|
28
|
+
|
|
29
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
30
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
31
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
32
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
33
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
34
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
35
|
+
SOFTWARE.
|
|
36
|
+
|
|
37
|
+
────────────────────────────────────────────────────────────────────────────────
|
|
38
|
+
LICENCE B — Commercial Use (Proprietary)
|
|
39
|
+
────────────────────────────────────────────────────────────────────────────────
|
|
40
|
+
|
|
41
|
+
A separate commercial licence is required for any of the following:
|
|
42
|
+
|
|
43
|
+
• Operating MathVoice (or a derivative) as a paid or free-tier SaaS product
|
|
44
|
+
• Bundling MathVoice into a commercial EdTech platform, LMS, or application
|
|
45
|
+
• Offering MathVoice as part of a subscription, enterprise contract, or
|
|
46
|
+
professional services engagement
|
|
47
|
+
• Any deployment where MathVoice is a material feature of a for-profit product
|
|
48
|
+
|
|
49
|
+
To obtain a commercial licence, contact: licensing@mathvoice.app
|
|
50
|
+
|
|
51
|
+
Commercial licences include:
|
|
52
|
+
• Unlimited deployment rights for your organisation
|
|
53
|
+
• Access to private support and roadmap input
|
|
54
|
+
• OEM / white-label rights (negotiated separately)
|
|
55
|
+
|
|
56
|
+
────────────────────────────────────────────────────────────────────────────────
|
|
57
|
+
THIRD-PARTY COMPONENTS
|
|
58
|
+
────────────────────────────────────────────────────────────────────────────────
|
|
59
|
+
|
|
60
|
+
This software incorporates open-source components (Next.js, React, KaTeX, etc.)
|
|
61
|
+
which remain subject to their own licences (primarily MIT). Their licences are
|
|
62
|
+
not affected by this dual-licence and are reproduced in node_modules/.
|
package/package.json
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mathvoice/react",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "MathVoice Studio as a controlled React component
|
|
5
|
-
"keywords": [
|
|
6
|
-
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "MathVoice Studio as a controlled React component \u2014 voice-driven LaTeX editing with a three-tier intent pipeline",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"math",
|
|
7
|
+
"latex",
|
|
8
|
+
"voice",
|
|
9
|
+
"accessibility",
|
|
10
|
+
"katex",
|
|
11
|
+
"react"
|
|
12
|
+
],
|
|
13
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
7
14
|
"author": "MathVoice <hello@mathvoice.app>",
|
|
8
15
|
"repository": {
|
|
9
16
|
"type": "git",
|
|
@@ -21,7 +28,10 @@
|
|
|
21
28
|
},
|
|
22
29
|
"./style.css": "./dist/style.css"
|
|
23
30
|
},
|
|
24
|
-
"files": [
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"README.md"
|
|
34
|
+
],
|
|
25
35
|
"scripts": {
|
|
26
36
|
"build": "tsup",
|
|
27
37
|
"dev": "tsup --watch",
|