-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "directus-extension-midnight-minimal-theme",
"description": "A dark minimal theme for Directus",
"author": {
"email": "[email protected]",
"name": "Dalton Sutton"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/daltonsutton/directus-extension-midnight-minimal-theme.git"
},
"bugs": {
"url": "https://github.com/daltonsutton/directus-extension-midnight-minimal-theme/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/daltonsutton/directus-extension-midnight-minimal-theme",
"icon": "extension",
"version": "1.0.3",
"keywords": [
"directus",
"directus-extension",
"directus-extension-theme"
],
"type": "module",
"files": [
"dist"
],
"directus:extension": {
"type": "theme",
"path": "dist/index.js",
"source": "src/index.js",
"host": "^10.10.0 || ^11.0.0"
},
"scripts": {
"build": "directus-extension build",
"dev": "directus-extension build -w --no-minify",
"link": "directus-extension link"
},
"devDependencies": {
"@directus/extensions-sdk": "12.1.4",
"vue": "^3.5.13"
}
}