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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @json2pptx/schema
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 @json2pptx/schema
15
+ npm i json2pptx-schema
16
16
  ```
17
17
 
18
18
  ## Usage
19
19
 
20
20
  ```ts
21
- import { parseDocument } from '@json2pptx/schema'
21
+ import { parseDocument } from 'json2pptx-schema'
22
22
 
23
23
  const doc = parseDocument(input)
24
24
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json2pptx-schema",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Schema parsing pipeline for json2pptx documents (migrate -> validate -> normalize).",
5
5
  "license": "MIT",
6
6
  "homepage": "https://json2pptx.henryge.com/",