-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@cipherstash/stack-drizzle",
"version": "1.0.0-rc.1",
"description": "CipherStash Stack Drizzle ORM integration: searchable, application-layer field-level encryption for PostgreSQL.",
"keywords": [
"encrypted",
"encryption",
"searchable-encryption",
"security",
"drizzle",
"orm",
"postgres",
"cipherstash",
"stack"
],
"bugs": {
"url": "https://github.com/cipherstash/stack/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cipherstash/stack.git",
"directory": "packages/stack-drizzle"
},
"license": "MIT",
"author": "CipherStash <humans@cipherstash.com>",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./v3": {
"import": {
"types": "./dist/v3/index.d.ts",
"default": "./dist/v3/index.js"
},
"require": {
"types": "./dist/v3/index.d.cts",
"default": "./dist/v3/index.cjs"
}
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"v3": [
"./dist/v3/index.d.ts"
]
}
},
"scripts": {
"prebuild": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:types": "vitest --run --typecheck.only",
"test:integration": "vitest run --config integration/vitest.config.ts",
"analyze:complexity": "fta src --score-cap 89"
},
"dependencies": {
"@cipherstash/stack": "workspace:*",
"@byteslice/result": "0.2.0"
},
"peerDependencies": {
"drizzle-orm": ">=0.33"
},
"devDependencies": {
"@cipherstash/protect-ffi": "0.28.0",
"@cipherstash/test-kit": "workspace:*",
"fta-cli": "3.0.0",
"dotenv": "17.4.2",
"drizzle-orm": "^0.45.2",
"postgres": "^3.4.8",
"tsup": "catalog:repo",
"typescript": "catalog:repo",
"vitest": "catalog:repo"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
}
}