@prisma/security-rules 0.3.6

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/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@prisma/security-rules",
3
+ "version": "0.3.6",
4
+ "sideEffects": false,
5
+ "description": "Prisma Postgres Security Rules",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "scripts": {
17
+ "build": "tsup",
18
+ "typecheck": "tsc --noEmit",
19
+ "lint": "eslint --fix .",
20
+ "test": "",
21
+ "prepublishOnly": "pnpm config set //registry.npmjs.org/:_authToken=\"$NPM_PUBLISH_TOKEN_EXTENSION\""
22
+ },
23
+ "keywords": [],
24
+ "dependencies": {
25
+ "@standard-schema/spec": "1.0.0",
26
+ "superjson": "2.2.2"
27
+ },
28
+ "devDependencies": {
29
+ "@prisma/client": "6.2.1",
30
+ "npm-run-all": "4.1.5",
31
+ "prisma": "6.2.1",
32
+ "tsup": "8.0.2",
33
+ "tsx": "4.17.0",
34
+ "typescript": "5.5.4",
35
+ "vitest": "1.5.3",
36
+ "wrangler": "3.105.1",
37
+ "zod": "3.24.1"
38
+ },
39
+ "peerDependencies": {
40
+ "@prisma/client": ">=6.2.0",
41
+ "@prisma/extension-accelerate": ">=1.2.2",
42
+ "arktype": ">=2.0.0",
43
+ "effect": ">=3.13.0",
44
+ "zod": ">=3.24.0"
45
+ },
46
+ "peerDependenciesMeta": {
47
+ "arktype": {
48
+ "optional": true
49
+ },
50
+ "effect": {
51
+ "optional": true
52
+ },
53
+ "zod": {
54
+ "optional": true
55
+ }
56
+ },
57
+ "engines": {
58
+ "node": ">=22"
59
+ },
60
+ "files": [
61
+ "assets",
62
+ "dist"
63
+ ]
64
+ }