@metasession.co/devaudit-plugin-prisma 0.1.0 → 0.1.3

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 +7 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -18,14 +18,18 @@ When loaded, this plugin contributes:
18
18
 
19
19
  ## Install
20
20
 
21
- The plugin lives under `plugins/devaudit-plugin-prisma/` in this repo while we settle the contract. To install it into a consumer machine:
21
+ ```sh
22
+ devaudit plugin install @metasession.co/devaudit-plugin-prisma
23
+ ```
24
+
25
+ The plugin is published on npm; the CLI installs it from there. The source also lives in-tree under `plugins/devaudit-plugin-prisma/` for first-party development.
26
+
27
+ Pre-release / from-source install (against a Git tag or commit) remains available:
22
28
 
23
29
  ```sh
24
30
  devaudit plugin install https://github.com/metasession-dev/DevAudit-Installer.git#plugins/devaudit-plugin-prisma
25
31
  ```
26
32
 
27
- (Once the portal plugin registry is live, the install will become `devaudit plugin install devaudit-plugin-prisma`.)
28
-
29
33
  ## Compatibility
30
34
 
31
35
  | | |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metasession.co/devaudit-plugin-prisma",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "description": "Prisma migration deploy hooks + status commands for DevAudit-onboarded node consumers.",
5
5
  "type": "module",
6
6
  "main": "./dist/plugin.js",
@@ -20,14 +20,14 @@
20
20
  "typecheck": "tsc --noEmit"
21
21
  },
22
22
  "dependencies": {
23
- "@metasession.co/devaudit-plugin-sdk": "^0.1.0",
23
+ "@metasession.co/devaudit-plugin-sdk": "^0.1.3",
24
24
  "execa": "^9.5.1"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^22.9.0",
28
28
  "tsup": "^8.3.5",
29
29
  "typescript": "^5.7.2",
30
- "vitest": "^2.1.5"
30
+ "vitest": "^4.1.6"
31
31
  },
32
32
  "devaudit": {
33
33
  "apiVersion": "1",