-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "directus-extension-embeddable-forms",
"version": "1.0.3",
"description": "Create public, embeddable forms for any Directus collection with prefill support, iframe communication, and auto-resize",
"icon": "dynamic_form",
"keywords": [
"directus",
"directus-extension",
"directus-module",
"forms",
"embed",
"iframe",
"public-forms",
"prefill",
"lead-capture",
"contact-form"
],
"author": "thederf",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JoshTheDerf/directus-extension-embeddable-forms.git"
},
"type": "module",
"files": [
"dist",
"README.md"
],
"directus:extension": {
"type": "module",
"path": "dist/index.js",
"source": "src/index.ts",
"host": "^11.0.0"
},
"scripts": {
"build": "directus-extension build",
"dev": "directus-extension build -w --no-minify",
"link": "directus-extension link"
},
"devDependencies": {
"@directus/extensions-sdk": "^12.0.0",
"typescript": "^5.3.0",
"vue": "^3.4.0",
"@directus/sdk": "^20.2.0"
}
}