-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@posthog/shared",
"version": "1.0.0",
"description": "Shared utilities for PostHog Code",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./canvas-freeform-prompt": {
"types": "./dist/canvas-freeform-prompt.d.ts",
"import": "./dist/canvas-freeform-prompt.js"
},
"./canvas-freeform-whitelist": {
"types": "./dist/canvas-freeform-whitelist.d.ts",
"import": "./dist/canvas-freeform-whitelist.js"
},
"./canvas-freeform-starter": {
"types": "./dist/canvas-freeform-starter.d.ts",
"import": "./dist/canvas-freeform-starter.js"
},
"./analytics-events": {
"types": "./dist/analytics-events.d.ts",
"import": "./dist/analytics-events.js"
},
"./agent-platform-types": {
"types": "./dist/agent-platform-types.d.ts",
"import": "./dist/agent-platform-types.js"
},
"./domain-types": {
"types": "./dist/domain-types.d.ts",
"import": "./dist/domain-types.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
},
"./deeplink": {
"types": "./dist/deeplink.d.ts",
"import": "./dist/deeplink.js"
},
"./dismissalReasons": {
"types": "./dist/dismissalReasons.d.ts",
"import": "./dist/dismissalReasons.js"
},
"./constants": {
"types": "./dist/constants.d.ts",
"import": "./dist/constants.js"
},
"./mcp-sandbox-proxy": {
"types": "./dist/mcp-sandbox-proxy.d.ts",
"import": "./dist/mcp-sandbox-proxy.js"
},
"./posthog-property-headers": {
"types": "./dist/posthog-property-headers.d.ts",
"import": "./dist/posthog-property-headers.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"clean": "node ../../scripts/rimraf.mjs dist .turbo"
},
"dependencies": {
"zod": "^4.1.12"
},
"devDependencies": {
"@agentclientprotocol/sdk": "0.19.0",
"tsup": "^8.5.1",
"typescript": "^5.5.0",
"vitest": "^4.1.8"
},
"files": [
"dist/**/*",
"src/**/*"
]
}