json2pptx-schema 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/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# json2pptx-schema
|
|
2
2
|
|
|
3
3
|
Schema and parsing pipeline for json2pptx documents.
|
|
4
4
|
|
|
@@ -12,13 +12,13 @@ Schema and parsing pipeline for json2pptx documents.
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
npm i
|
|
15
|
+
npm i json2pptx-schema
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Usage
|
|
19
19
|
|
|
20
20
|
```ts
|
|
21
|
-
import { parseDocument } from '
|
|
21
|
+
import { parseDocument } from 'json2pptx-schema'
|
|
22
22
|
|
|
23
23
|
const doc = parseDocument(input)
|
|
24
24
|
```
|
package/package.json
CHANGED