forked from dwaring87/directus-extension-human-readable-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 993 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
{
"name": "directus-extension-human-readable-id",
"description": "Generate a human-readable ID for a Directus text field",
"icon": "badge",
"version": "1.0.0",
"keywords": [
"directus",
"directus-extension",
"directus-extension-interface",
"human-readable-id"
],
"author": "David Waring <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dwaring87/directus-extension-human-readable-id.git"
},
"homepage": "https://github.com/dwaring87/directus-extension-human-readable-id#readme",
"type": "module",
"files": [
"dist"
],
"directus:extension": {
"type": "interface",
"path": "dist/index.js",
"source": "src/index.js",
"host": "^10.10.0"
},
"scripts": {
"build": "directus-extension build",
"dev": "directus-extension build -w --no-minify",
"link": "directus-extension link"
},
"devDependencies": {
"@directus/extensions-sdk": "11.0.1",
"vue": "^3.4.21"
}
}