-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.5 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
{
"name": "@contact-api/core",
"description": "Contact form logic for the contact-api ecosystem",
"author": "Mason L'Etoile",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/contact-api/core.git"
},
"homepage": "https://github.com/contact-api/core#readme",
"bugs": { "url": "https://github.com/contact-api/core/issues" },
"keywords": ["contact-form", "cors", "validation", "honeypot", "typescript", "contact-api"],
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"build": "tsdown",
"prepare": "npm run build"
},
"files": ["dist"],
"exports": {
"./types": {
"types": "./dist/types.d.mts",
"import": "./dist/types.mjs"
},
"./email": {
"types": "./dist/email.d.mts",
"import": "./dist/email.mjs"
},
"./contact": {
"types": "./dist/contact.d.mts",
"import": "./dist/contact.mjs"
},
"./cors": {
"types": "./dist/cors.d.mts",
"import": "./dist/cors.mjs"
},
"./handler": {
"types": "./dist/handler.d.mts",
"import": "./dist/handler.mjs"
},
"./validation": {
"types": "./dist/validation.d.mts",
"import": "./dist/validation.mjs"
}
},
"devDependencies": {
"@types/node": "^26.4.0",
"@vitest/coverage-v8": "^4.1.0",
"typescript": "^7.0.2",
"vitest": "^4.1.0",
"tsdown": "^0.22.0"
}
}