-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 3.08 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 3.08 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
59
60
61
62
63
64
65
66
67
{
"name": "@dotdo/sdk.do",
"version": "1.0.0",
"description": "SDK for .do platform with RPC client",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:e2e:watch": "vitest --config vitest.e2e.config.ts",
"test:e2e:database": "vitest run --config vitest.e2e.config.ts test/e2e/database.e2e.test.ts",
"test:e2e:ai": "vitest run --config vitest.e2e.config.ts test/e2e/ai.e2e.test.ts",
"test:e2e:cache": "vitest run --config vitest.e2e.config.ts test/e2e/cache.e2e.test.ts",
"test:e2e:storage": "vitest run --config vitest.e2e.config.ts test/e2e/storage.e2e.test.ts",
"test:e2e:queue": "vitest run --config vitest.e2e.config.ts test/e2e/queue.e2e.test.ts",
"test:e2e:workflows": "vitest run --config vitest.e2e.config.ts test/e2e/workflows.e2e.test.ts",
"test:e2e:composio": "vitest run --config vitest.e2e.config.ts test/e2e/composio.e2e.test.ts",
"test:e2e:stripe": "vitest run --config vitest.e2e.config.ts test/e2e/integrations/stripe.e2e.test.ts",
"test:e2e:github": "vitest run --config vitest.e2e.config.ts test/e2e/integrations/github.e2e.test.ts",
"test:e2e:slack": "vitest run --config vitest.e2e.config.ts test/e2e/integrations/slack.e2e.test.ts",
"test:e2e:twilio": "vitest run --config vitest.e2e.config.ts test/e2e/integrations/twilio.e2e.test.ts",
"test:e2e:sendgrid": "vitest run --config vitest.e2e.config.ts test/e2e/integrations/sendgrid.e2e.test.ts",
"test:e2e:salesforce": "vitest run --config vitest.e2e.config.ts test/e2e/integrations/salesforce.e2e.test.ts",
"test:e2e:hubspot": "vitest run --config vitest.e2e.config.ts test/e2e/integrations/hubspot.e2e.test.ts",
"test:e2e:notion": "vitest run --config vitest.e2e.config.ts test/e2e/integrations/notion.e2e.test.ts",
"test:e2e:linear": "vitest run --config vitest.e2e.config.ts test/e2e/integrations/linear.e2e.test.ts",
"test:e2e:google-workspace": "vitest run --config vitest.e2e.config.ts test/e2e/integrations/google-workspace.e2e.test.ts",
"test:e2e:integrations": "vitest run --config vitest.e2e.config.ts test/e2e/integrations/",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20251011.0",
"@hubspot/api-client": "^13.4.0",
"@linear/sdk": "^28.0.0",
"googleapis": "^144.0.0",
"@notionhq/client": "^2.2.15",
"@octokit/rest": "^22.0.0",
"@sendgrid/client": "^8.1.4",
"@sendgrid/mail": "^8.1.4",
"@slack/web-api": "^7.11.0",
"capnweb": "^0.1.0",
"graphdl": "link:../graphdl",
"jsforce": "^3.10.8",
"stripe": "^17.4.0",
"twilio": "^5.3.7",
"webhooks.do": "link:../webhooks.do"
},
"devDependencies": {
"typescript": "^5.8.3",
"vitest": "^2.1.8",
"zod": "catalog:"
}
}