@veltrixsecops/app-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 +6 -5
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @veltrixsecops/app-sdk
2
2
 
3
- The official SDK for building [Veltrix](https://github.com/captivatortechnologies/Veltrix) Security-as-Code apps.
3
+ The official SDK for building [Veltrix](https://veltrixsecops.com) Security-as-Code apps. Community apps live in the open-source [veltrix-apps](https://github.com/captivatortechnologies/veltrix-apps) repository; the Veltrix platform itself is a hosted SaaS.
4
4
 
5
5
  A Veltrix app packages everything needed to manage one security tool's configuration as code: pipeline handlers (validate → deploy → rollback → health-check → drift-detect → status), canvas templates, database migrations, lifecycle hooks, and optional client pages. This SDK provides the typed contracts and helpers for all of it.
6
6
 
@@ -85,7 +85,7 @@ import { useAppContext, usePipelineStatus } from '@veltrixsecops/app-sdk/hooks'
85
85
 
86
86
  ## Building an app
87
87
 
88
- Start from the [`_template`](https://github.com/captivatortechnologies/Veltrix/tree/main/apps-and-tools/_template) app and see the contribution guide in `apps-and-tools/CONTRIBUTING.md`.
88
+ Community apps live in the [veltrix-apps](https://github.com/captivatortechnologies/veltrix-apps) repository. Start from its [`_template`](https://github.com/captivatortechnologies/veltrix-apps/tree/main/_template) app and see the [contribution guide](https://github.com/captivatortechnologies/veltrix-apps/blob/main/CONTRIBUTING.md).
89
89
 
90
90
  ## License
91
91
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltrixsecops/app-sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Official SDK for building Veltrix Security-as-Code apps — typed pipeline handler contracts, lifecycle hook types, manifest types, and React hooks.",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
@@ -37,7 +37,8 @@
37
37
  "types": "./dist/hooks/index.d.cts",
38
38
  "default": "./dist/hooks/index.cjs"
39
39
  }
40
- }
40
+ },
41
+ "./package.json": "./package.json"
41
42
  },
42
43
  "files": [
43
44
  "dist",
@@ -75,10 +76,10 @@
75
76
  "plugin"
76
77
  ],
77
78
  "license": "MIT",
78
- "homepage": "https://github.com/captivatortechnologies/Veltrix/tree/main/app-sdk",
79
+ "homepage": "https://github.com/captivatortechnologies/veltrix-apps/tree/main/sdk",
79
80
  "repository": {
80
81
  "type": "git",
81
- "url": "https://github.com/captivatortechnologies/Veltrix.git",
82
- "directory": "app-sdk"
82
+ "url": "git+https://github.com/captivatortechnologies/veltrix-apps.git",
83
+ "directory": "sdk"
83
84
  }
84
85
  }