@prisma/cli-security-rules 0.1.1 → 0.2.0
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/dist/index.js +1 -1
- package/package.json +13 -13
package/dist/index.js
CHANGED
|
@@ -545,7 +545,7 @@ var require_mod_cjs3 = __commonJS({
|
|
|
545
545
|
import { defineCommand as defineCommand2, runMain } from "citty";
|
|
546
546
|
|
|
547
547
|
// package.json
|
|
548
|
-
var version = "0.1.
|
|
548
|
+
var version = "0.1.2";
|
|
549
549
|
|
|
550
550
|
// commands/deploy.ts
|
|
551
551
|
import { defineCommand, showUsage } from "citty";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/cli-security-rules",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"description": "Security Rules CLI for Prisma",
|
|
6
6
|
"type": "module",
|
|
@@ -12,12 +12,6 @@
|
|
|
12
12
|
},
|
|
13
13
|
"./*": "./*"
|
|
14
14
|
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "tsup",
|
|
17
|
-
"typecheck": "tsc --noEmit",
|
|
18
|
-
"lint": "eslint --fix .",
|
|
19
|
-
"test": ""
|
|
20
|
-
},
|
|
21
15
|
"keywords": [],
|
|
22
16
|
"dependencies": {
|
|
23
17
|
"@prisma/internals": "6.2.1",
|
|
@@ -30,17 +24,17 @@
|
|
|
30
24
|
"devDependencies": {
|
|
31
25
|
"@prisma/client": "6.2.1",
|
|
32
26
|
"@types/node": "22.3.0",
|
|
33
|
-
"common-cli-utils": "workspace:^",
|
|
34
27
|
"npm-run-all": "4.1.5",
|
|
35
|
-
"rules-deployer": "workspace:^",
|
|
36
|
-
"rules-playground": "workspace:^",
|
|
37
28
|
"prisma": "6.2.1",
|
|
38
29
|
"tsup": "8.0.2",
|
|
39
30
|
"tsx": "4.17.0",
|
|
40
31
|
"typescript": "5.5.4",
|
|
41
32
|
"vitest": "1.5.3",
|
|
42
33
|
"wrangler": "3.105.1",
|
|
43
|
-
"zod": "3.24.1"
|
|
34
|
+
"zod": "3.24.1",
|
|
35
|
+
"common-cli-utils": "^0.0.0",
|
|
36
|
+
"rules-playground": "^0.0.3",
|
|
37
|
+
"rules-deployer": "^0.0.0"
|
|
44
38
|
},
|
|
45
39
|
"peerDependencies": {
|
|
46
40
|
"prisma": ">=6.2.0"
|
|
@@ -50,5 +44,11 @@
|
|
|
50
44
|
},
|
|
51
45
|
"files": [
|
|
52
46
|
"dist"
|
|
53
|
-
]
|
|
54
|
-
|
|
47
|
+
],
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "tsup",
|
|
50
|
+
"typecheck": "tsc --noEmit",
|
|
51
|
+
"lint": "eslint --fix .",
|
|
52
|
+
"test": ""
|
|
53
|
+
}
|
|
54
|
+
}
|