pi-studio 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/CHANGELOG.md +3 -0
- package/package.json +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -43,6 +43,9 @@ All notable changes to `pi-studio` are documented here.
|
|
|
43
43
|
- If `dompurify` is unavailable, preview now falls back to escaped plain markdown instead of injecting unsanitized HTML.
|
|
44
44
|
- Preview sanitization now preserves MathML profile and strips MathML annotation tags to avoid duplicate raw TeX text beside rendered equations.
|
|
45
45
|
|
|
46
|
+
### Changed
|
|
47
|
+
- Added npm metadata fields (`repository`, `homepage`, `bugs`) so npm package page links to GitHub.
|
|
48
|
+
|
|
46
49
|
## [0.1.0-alpha.1] - 2026-02-26
|
|
47
50
|
|
|
48
51
|
Initial alpha baseline.
|
package/package.json
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-studio",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Browser GUI for structured critique workflows in pi",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/omaclaren/pi-studio.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/omaclaren/pi-studio#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/omaclaren/pi-studio/issues"
|
|
14
|
+
},
|
|
7
15
|
"keywords": [
|
|
8
16
|
"pi-package"
|
|
9
17
|
],
|