-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 921 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 921 Bytes
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
{
"name": "@cipherstash/schema",
"version": "2.2.0",
"description": "CipherStash schema builder for TypeScript",
"keywords": [
"encrypted",
"protect",
"schema",
"builder"
],
"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",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"release": "tsup"
},
"devDependencies": {
"tsup": "catalog:repo",
"typescript": "catalog:repo",
"vitest": "catalog:repo"
},
"dependencies": {
"zod": "^3.24.2"
},
"publishConfig": {
"access": "public"
}
}