@pie-lib/math-rendering 0.1.0 → 0.1.1-next.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/dist/index.d.ts +0 -1
- package/package.json +9 -3
- package/dist/index.d.ts.map +0 -1
- package/src/index.ts +0 -10
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-lib/math-rendering",
|
|
3
|
-
"version": "0.1.0",
|
|
3
|
+
"version": "0.1.1-next.0",
|
|
4
4
|
"description": "math rendering utilities",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@pie-element/shared-math-rendering-mathjax": "0.1.0"
|
|
@@ -15,13 +15,19 @@
|
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
|
-
"dist"
|
|
19
|
-
"src"
|
|
18
|
+
"dist"
|
|
20
19
|
],
|
|
21
20
|
"sideEffects": false,
|
|
22
21
|
"scripts": {
|
|
23
22
|
"build": "bun x vite build && bun x tsc --emitDeclarationOnly",
|
|
24
23
|
"dev": "bun x vite",
|
|
25
24
|
"test": "bun x vitest run"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"vite": "^8.0.1",
|
|
28
|
+
"typescript": "^5.9.3",
|
|
29
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
30
|
+
"@types/react": "^18.2.0",
|
|
31
|
+
"@types/react-dom": "^18.2.0"
|
|
26
32
|
}
|
|
27
33
|
}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA;;;;;;GAMG;AAEH,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,4CAA4C,CAAC"}
|
package/src/index.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
// @ts-nocheck
|
|
2
|
-
/**
|
|
3
|
-
* @synced-from pie-lib/packages/math-rendering
|
|
4
|
-
* @auto-generated
|
|
5
|
-
*
|
|
6
|
-
* This is a thin wrapper that re-exports from @pie-element/shared-math-rendering-mathjax.
|
|
7
|
-
* The actual implementation is in packages/shared/math-rendering-mathjax.
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
export { renderMath, wrapMath, unWrapMath, mmlToLatex } from '@pie-element/shared-math-rendering-mathjax';
|