-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.17 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.17 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
{
"name": "contiguity",
"version": "0.0.9",
"description": "Contiguity JavaScript/TypeScript SDK",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "bun run build && vitest run",
"prepublishOnly": "tsc",
"pack": "bun pm pack",
"publish:dry": "bun run build && bun publish --dry-run",
"publish": "bun run build && npm publish"
},
"keywords": [
"contiguity",
"sms",
"email",
"otp",
"imessage",
"whatsapp"
],
"license": "MIT",
"dependencies": {
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.19.11",
"@types/react": "^19.2.14",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"@react-email/render": "^2.0.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"engines": {
"node": ">=18"
},
"peerDependenciesMeta": {
"@react-email/render": {
"optional": true
}
},
"peerDependencies": {
"@react-email/render": "^2.0.4"
}
}