@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.
- package/README.md +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
|
|
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": "
|
|
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",
|