@extrovert.dev/sdk 0.1.0-pre.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@extrovert.dev/sdk",
3
+ "version": "0.1.0-pre.10",
4
+ "description": "TypeScript SDK for the Extrovert agent-email API \u2014 a real mailbox for your agent, in one call.",
5
+ "keywords": [
6
+ "extrovert",
7
+ "email",
8
+ "agent",
9
+ "mailbox",
10
+ "mcp",
11
+ "wait-for-email",
12
+ "otp"
13
+ ],
14
+ "license": "MIT",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/extrovert-dot-dev/extrovert-js.git",
18
+ "directory": "packages/sdk"
19
+ },
20
+ "homepage": "https://docs.extrovert.dev/sdk/typescript/",
21
+ "bugs": {
22
+ "url": "https://github.com/extrovert-dot-dev/extrovert-js/issues"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public",
26
+ "tag": "next"
27
+ },
28
+ "type": "module",
29
+ "main": "./dist/index.cjs",
30
+ "module": "./dist/index.js",
31
+ "types": "./dist/index.d.ts",
32
+ "exports": {
33
+ ".": {
34
+ "types": "./dist/index.d.ts",
35
+ "import": "./dist/index.js",
36
+ "require": "./dist/index.cjs"
37
+ },
38
+ "./package.json": "./package.json"
39
+ },
40
+ "files": [
41
+ "dist",
42
+ "README.md",
43
+ "LICENSE"
44
+ ],
45
+ "sideEffects": false,
46
+ "engines": {
47
+ "node": ">=18"
48
+ },
49
+ "scripts": {
50
+ "build": "tsup",
51
+ "typecheck": "tsc --noEmit && tsc -p tsconfig.examples.json",
52
+ "typecheck:examples": "tsc -p tsconfig.examples.json",
53
+ "test": "tsx --test src/**/*.test.ts",
54
+ "prepublishOnly": "pnpm run typecheck && pnpm run build"
55
+ },
56
+ "devDependencies": {
57
+ "@types/node": "24.0.10",
58
+ "tsup": "8.5.0",
59
+ "tsx": "4.20.3",
60
+ "typescript": "5.8.3"
61
+ },
62
+ "packageManager": "pnpm@10.33.0",
63
+ "pnpm": {
64
+ "onlyBuiltDependencies": [
65
+ "esbuild"
66
+ ]
67
+ }
68
+ }