zenstack-encryption 0.1.1 → 0.1.2

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 (1) hide show
  1. package/package.json +62 -59
package/package.json CHANGED
@@ -1,60 +1,63 @@
1
1
  {
2
- "name": "zenstack-encryption",
3
- "version": "0.1.1",
4
- "description": "ZenStack Encryption Plugin - Automatic field encryption/decryption for @encrypted fields",
5
- "keywords": [
6
- "zenstack",
7
- "encryption",
8
- "aes",
9
- "crypto",
10
- "plugin"
11
- ],
12
- "homepage": "https://github.com/genu/zenstack-encryption#readme",
13
- "bugs": {
14
- "url": "https://github.com/genu/zenstack-encryption/issues"
15
- },
16
- "license": "MIT",
17
- "repository": {
18
- "type": "git",
19
- "url": "https://github.com/genu/zenstack-encryption.git"
20
- },
21
- "files": [
22
- "dist",
23
- "plugin.zmodel",
24
- "LICENSE",
25
- "README.md"
26
- ],
27
- "type": "module",
28
- "sideEffects": false,
29
- "exports": {
30
- ".": {
31
- "types": "./dist/index.d.mts",
32
- "default": "./dist/index.mjs"
33
- },
34
- "./plugin.zmodel": "./plugin.zmodel",
35
- "./package.json": "./package.json"
36
- },
37
- "publishConfig": {
38
- "access": "public"
39
- },
40
- "peerDependencies": {
41
- "@zenstackhq/orm": ">=3.3.0"
42
- },
43
- "dependencies": {
44
- "zod": "4.0.0"
45
- },
46
- "devDependencies": {
47
- "@zenstackhq/orm": "3.3.2",
48
- "eslint": "9.0.0",
49
- "tsdown": "0.20.0",
50
- "typescript": "5.9.0",
51
- "typescript-eslint": "8.0.0",
52
- "vitest": "3.0.0"
53
- },
54
- "scripts": {
55
- "build": "tsdown",
56
- "watch": "tsdown --watch",
57
- "lint": "eslint .",
58
- "test": "vitest run"
59
- }
60
- }
2
+ "name": "zenstack-encryption",
3
+ "version": "0.1.2",
4
+ "description": "ZenStack Encryption Plugin - Automatic field encryption/decryption for @encrypted fields",
5
+ "keywords": [
6
+ "zenstack",
7
+ "encryption",
8
+ "aes",
9
+ "crypto",
10
+ "plugin"
11
+ ],
12
+ "homepage": "https://github.com/genu/zenstack-encryption#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/genu/zenstack-encryption/issues"
15
+ },
16
+ "license": "MIT",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/genu/zenstack-encryption.git"
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "plugin.zmodel",
24
+ "LICENSE",
25
+ "README.md"
26
+ ],
27
+ "type": "module",
28
+ "sideEffects": false,
29
+ "exports": {
30
+ ".": {
31
+ "types": "./dist/index.d.mts",
32
+ "default": "./dist/index.mjs"
33
+ },
34
+ "./plugin.zmodel": "./plugin.zmodel",
35
+ "./package.json": "./package.json"
36
+ },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ },
40
+ "scripts": {
41
+ "build": "tsdown",
42
+ "watch": "tsdown --watch",
43
+ "lint": "eslint .",
44
+ "test": "vitest run",
45
+ "prepublishOnly": "pnpm run build",
46
+ "prepack": "pnpm run build"
47
+ },
48
+ "peerDependencies": {
49
+ "@zenstackhq/orm": ">=3.3.0"
50
+ },
51
+ "dependencies": {
52
+ "zod": "4.3.6"
53
+ },
54
+ "devDependencies": {
55
+ "@zenstackhq/orm": "3.3.3",
56
+ "eslint": "10.0.0",
57
+ "tsdown": "0.20.3",
58
+ "typescript": "5.9.3",
59
+ "typescript-eslint": "8.54.0",
60
+ "vitest": "4.0.18"
61
+ },
62
+ "packageManager": "pnpm@10.29.1"
63
+ }