-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 835 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 835 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
{
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1"
},
"description": "Generated Typescript types and standalone validator functions for the application's event schemas.",
"devDependencies": {
"rimraf": "^5.0.10",
"typescript": "^5.9.3"
},
"exports": {
".": {
"types": "./types/index.d.ts"
},
"./*.js": {
"default": "./validators/*.js",
"types": "./validators/index.d.ts"
}
},
"name": "digital-letters-events",
"scripts": {
"clean": "rimraf types validators",
"lint": "echo \"No linter has been implemented for this package.\"",
"lint:fix": "echo \"No linter has been implemented for this package.\"",
"test:unit": "echo \"No unit tests have been implemented for this package.\"",
"typecheck": "tsc --noEmit"
},
"version": "0.0.1"
}