-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.8 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.8 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
{
"name": "@cipherstash/protect",
"version": "11.0.0",
"description": "CipherStash Protect for JavaScript",
"keywords": [
"encrypted",
"query",
"language",
"typescript",
"ts",
"protect"
],
"bugs": {
"url": "https://github.com/cipherstash/protectjs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cipherstash/protectjs.git"
},
"license": "MIT",
"author": "CipherStash <hello@cipherstash.com>",
"type": "module",
"bin": {
"stash": "./dist/bin/stash.js"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js",
"require": "./dist/client.cjs"
},
"./identify": {
"types": "./dist/identify/index.d.ts",
"import": "./dist/identify/index.js",
"require": "./dist/identify/index.cjs"
},
"./stash": {
"types": "./dist/stash/index.d.ts",
"import": "./dist/stash/index.js",
"require": "./dist/stash/index.cjs"
}
},
"scripts": {
"build": "tsup",
"postbuild": "chmod +x ./dist/bin/stash.js",
"dev": "tsup --watch",
"test": "vitest run",
"release": "tsup"
},
"devDependencies": {
"@supabase/supabase-js": "^2.47.10",
"execa": "^9.5.2",
"json-schema-to-typescript": "^15.0.2",
"postgres": "^3.4.7",
"tsup": "catalog:repo",
"tsx": "catalog:repo",
"typescript": "catalog:repo",
"vitest": "catalog:repo"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@byteslice/result": "^0.2.0",
"@cipherstash/protect-ffi": "0.21.0",
"@cipherstash/schema": "workspace:*",
"@stricli/core": "^1.2.5",
"dotenv": "16.4.7",
"zod": "^3.24.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.24.0"
}
}