@dhwaniapp/plugin-sdk 1.0.0 → 1.0.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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,11 +16,11 @@ npm install --save-dev @dhwaniapp/plugin-sdk
16
16
 
17
17
  ## 1. JSON Schema Validation (`application.json`)
18
18
 
19
- To enable autocomplete and inline schema validation in your editor (e.g. VS Code), add the `$schema` reference pointing to the node_modules location at the top of your `application.json` manifest:
19
+ To enable autocomplete and inline schema validation in your editor (e.g. VS Code), add the `$schema` reference pointing to the public CDN registry at the top of your `application.json` manifest:
20
20
 
21
21
  ```json
22
22
  {
23
- "$schema": "./node_modules/@dhwaniapp/plugin-sdk/plugin-manifest.schema.json",
23
+ "$schema": "https://unpkg.com/@dhwaniapp/plugin-sdk@latest/plugin-manifest.schema.json",
24
24
  "display_name": "My Custom Node Plugin",
25
25
  "system_name": "my.custom.node",
26
26
  "version": "1.0.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhwaniapp/plugin-sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Software Development Kit (SDK) and manifest schemas for building Dhwani Note Taking plugins.",
5
5
  "main": "",
6
6
  "types": "index.d.ts",