-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.07 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
{
"name": "@cipherstash/stack-supabase",
"version": "1.0.0-rc.2",
"description": "CipherStash Stack Supabase integration: transparent, searchable field-level encryption for Supabase.",
"keywords": [
"encrypted",
"encryption",
"searchable-encryption",
"security",
"supabase",
"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-supabase"
},
"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"
}
},
"./package.json": "./package.json"
},
"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 91"
},
"dependencies": {
"@cipherstash/stack": "workspace:*"
},
"peerDependencies": {
"@supabase/supabase-js": ">=2",
"pg": ">=8"
},
"peerDependenciesMeta": {
"@supabase/supabase-js": {
"optional": true
},
"pg": {
"optional": true
}
},
"devDependencies": {
"@cipherstash/protect-ffi": "0.29.0",
"@cipherstash/test-kit": "workspace:*",
"fta-cli": "3.0.0",
"@supabase/postgrest-js": "2.110.1",
"@supabase/supabase-js": "^2.110.1",
"@types/pg": "^8.20.0",
"fast-check": "^4.9.0",
"dotenv": "17.4.2",
"pg": "8.22.0",
"postgres": "^3.4.8",
"tsup": "catalog:repo",
"typescript": "catalog:repo",
"vitest": "catalog:repo"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
}
}