@lofcz/pptist 2.0.1 → 2.0.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.
- package/dist/embed/agentic-manifest.json +1241 -0
- package/dist/embed/pptist-embed.css +1 -1
- package/dist/embed/pptist-embed.js +11744 -11630
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lofcz/pptist",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "PPTist presentation editor embed bundle with a typed agentic bridge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/embed/pptist-embed.js",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"import": "./dist/embed/pptist-embed.css",
|
|
29
29
|
"default": "./dist/embed/pptist-embed.css"
|
|
30
30
|
},
|
|
31
|
+
"./agentic-manifest.json": "./dist/embed/agentic-manifest.json",
|
|
31
32
|
"./package.json": "./package.json"
|
|
32
33
|
},
|
|
33
34
|
"publishConfig": {
|
|
@@ -40,7 +41,8 @@
|
|
|
40
41
|
"scripts": {
|
|
41
42
|
"dev": "vp dev",
|
|
42
43
|
"build": "run-p type-check \"build-only {@}\" --",
|
|
43
|
-
"build:embed": "npm run i18n:build && npm run build:types && vp build --config vite.config.embed.ts && node scripts/scope-embed-css.mjs && node scripts/extract-embed-fonts.mjs && node scripts/copy-embed-public.mjs",
|
|
44
|
+
"build:embed": "npm run i18n:build && npm run build:types && vp build --config vite.config.embed.ts && node scripts/scope-embed-css.mjs && node scripts/extract-embed-fonts.mjs && node scripts/copy-embed-public.mjs && node scripts/generate-agentic-manifest.mjs",
|
|
45
|
+
"agentic:manifest": "node scripts/generate-agentic-manifest.mjs",
|
|
44
46
|
"build:types": "node -e \"require('node:fs').rmSync('dist/types',{recursive:true,force:true})\" && vue-tsc -p tsconfig.types.json && node scripts/rewrite-embed-types.mjs",
|
|
45
47
|
"preview": "vp preview",
|
|
46
48
|
"build-only": "vp build",
|
|
@@ -78,7 +80,7 @@
|
|
|
78
80
|
"number-precision": "^1.6.0",
|
|
79
81
|
"pinia": "^3.0.2",
|
|
80
82
|
"pptxgenjs": "^3.12.0",
|
|
81
|
-
"pptxtojson": "^2.0.
|
|
83
|
+
"pptxtojson": "^2.0.4",
|
|
82
84
|
"prosemirror-commands": "^1.6.0",
|
|
83
85
|
"prosemirror-dropcursor": "^1.8.1",
|
|
84
86
|
"prosemirror-gapcursor": "^1.3.2",
|