-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 997 Bytes
/
package.json
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-pdf-builder",
"description": "This package is a node for Directus flows, utilizing the PDFMake library for generating PDF documents.",
"icon": "extension",
"version": "1.2.0",
"keywords": [
"directus",
"directus-extension",
"directus-extension-operation",
"pdf-make"
],
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"directus:extension": {
"type": "operation",
"path": {
"app": "dist/app.js",
"api": "dist/api.js"
},
"source": {
"app": "src/app.js",
"api": "src/api.js"
},
"host": "^11.1.0"
},
"scripts": {
"build": "directus-extension build",
"dev": "directus-extension build -w --no-minify",
"link": "directus-extension link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/somaromero/directus-extension-pdf-builder.git"
},
"devDependencies": {
"@directus/extensions-sdk": "11.0.9",
"vue": "^3.4.34"
},
"dependencies": {
"pdfmake": "^0.2.10",
"uuid": "^10.0.0"
}
}