forked from assistant-ui/assistant-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.29 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.29 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": "safe-content-frame",
"version": "0.0.5",
"description": "Secure iframe rendering for untrusted content using SafeContentFrame",
"keywords": [
"iframe",
"sandbox",
"security",
"html",
"content",
"safe"
],
"author": "AgentbaseAI Inc.",
"license": "MIT",
"type": "module",
"exports": {
".": {
"aui-source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./shadow_dom": {
"aui-source": "./src/shadow_dom.ts",
"types": "./dist/shadow_dom.d.ts",
"default": "./dist/shadow_dom.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"shadow_dom",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "aui-build",
"dev": "vite demo"
},
"devDependencies": {
"@assistant-ui/x-buildutils": "workspace:*",
"vite": "^7.3.2"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://www.assistant-ui.com/safe-content-frame",
"repository": {
"type": "git",
"url": "git+https://github.com/assistant-ui/assistant-ui.git",
"directory": "packages/safe-content-frame"
},
"bugs": {
"url": "https://github.com/assistant-ui/assistant-ui/issues"
}
}