json2pptx-schema 0.2.3 → 0.2.4
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/README.md +2 -2
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -40,6 +40,6 @@ const doc: PresentationDocument = parseDocument({
|
|
|
40
40
|
## Publish
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
-
pnpm -C
|
|
44
|
-
pnpm -C
|
|
43
|
+
pnpm -C packages/json2pptx-schema build
|
|
44
|
+
pnpm -C packages/json2pptx-schema publish --access public
|
|
45
45
|
```
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "json2pptx-schema",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Schema parsing pipeline for json2pptx documents (migrate -> validate -> normalize).",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"homepage": "https://
|
|
6
|
+
"homepage": "https://pipto.henryge.com/",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/gezhiheng/
|
|
10
|
-
"directory": "
|
|
9
|
+
"url": "git+https://github.com/gezhiheng/pipto.git",
|
|
10
|
+
"directory": "packages/json2pptx-schema"
|
|
11
11
|
},
|
|
12
12
|
"main": "dist/index.js",
|
|
13
13
|
"module": "dist/index.mjs",
|
|
@@ -38,6 +38,8 @@
|
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "tsup",
|
|
40
40
|
"dev:watch": "tsup --watch",
|
|
41
|
+
"test": "vitest run",
|
|
42
|
+
"test:watch": "vitest",
|
|
41
43
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
42
44
|
"prepublishOnly": "pnpm run build"
|
|
43
45
|
},
|
|
@@ -47,6 +49,7 @@
|
|
|
47
49
|
"devDependencies": {
|
|
48
50
|
"@types/node": "^25.5.0",
|
|
49
51
|
"tsup": "^8.5.1",
|
|
50
|
-
"typescript": "^5.9.3"
|
|
52
|
+
"typescript": "^5.9.3",
|
|
53
|
+
"vitest": "^4.1.0"
|
|
51
54
|
}
|
|
52
55
|
}
|