pptx-previewer 0.3.1 → 0.3.3

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +8 -6
package/README.md CHANGED
@@ -70,7 +70,7 @@ The package exports:
70
70
  ## Development
71
71
 
72
72
  ```bash
73
- cd src/lib/pptx-previewer
73
+ cd packages/pptx-previewer
74
74
  pnpm install
75
75
  pnpm run typecheck
76
76
  pnpm run build
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pptx-previewer",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "A React component to preview PPTX JSON slides in the browser.",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -9,7 +9,8 @@
9
9
  "homepage": "https://json2pptx.henryge.com/",
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "https://github.com/gezhiheng/json2ppt-editor/"
12
+ "url": "git+https://github.com/gezhiheng/json2pptx-editor.git",
13
+ "directory": "packages/pptx-previewer"
13
14
  },
14
15
  "exports": {
15
16
  ".": {
@@ -41,11 +42,12 @@
41
42
  "react": ">=18"
42
43
  },
43
44
  "dependencies": {
44
- "json2pptx-schema": "0.2.1"
45
+ "json2pptx-schema": "0.2.3"
45
46
  },
46
47
  "devDependencies": {
47
- "@types/react": "^18.3.3",
48
- "tsup": "^8.0.1",
49
- "typescript": "^5.3.3"
48
+ "react": "^19.2.4",
49
+ "@types/react": "^19.2.14",
50
+ "tsup": "^8.5.1",
51
+ "typescript": "^5.9.3"
50
52
  }
51
53
  }