-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 KB
/
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
47
48
49
50
51
52
53
54
{
"name": "@7span/directus-extension-custom-query-panel",
"version": "1.1.7",
"scripts": {
"build": "directus-extension build",
"dev": "directus-extension build -w --no-minify",
"link": "directus-extension link",
"add": "directus-extension add",
"prepublishOnly": "npm run build"
},
"directus:extension": {
"host": "^9.22.4",
"type": "bundle",
"path": {
"app": "dist/app.js",
"api": "dist/api.js"
},
"entries": [
{
"type": "panel",
"name": "custom-query-panel",
"source": "src/custom-query-panel/index.js"
},
{
"type": "endpoint",
"name": "custom-query",
"source": "src/custom-query/index.js"
}
]
},
"devDependencies": {
"@directus/extensions-sdk": "9.22.4",
"vue": "^3.2.47"
},
"author": {
"name": "7span",
"email": "yo@7span.com"
},
"repository": {
"type": "git",
"url": "https://github.com/7span/directus-extension-custom-query-panel.git"
},
"homepage": "https://github.com/7span/directus-extension-custom-query-panel#Readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"dotenv": "^16.3.1",
"paraphrase": "^3.1.1"
},
"files": [
"dist"
]
}