forked from Intevel/nuxt-directus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.35 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "nuxt-directus",
"version": "3.2.2",
"license": "MIT",
"repository": "https://github.com/intevel/nuxt-directus",
"homepage": "https://nuxt-directus.netlify.app/",
"type": "module",
"author": {
"name": "Conner Luka Bachmann",
"email": "github@conner-bachmann.de"
},
"contributors": [
"Intevel <github@conner-bachmann.de>"
],
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"docs": "cd docs && yarn dev",
"release": "nuxt-module-build && standard-version && git push --follow-tags && npm publish",
"lint": "eslint --ext .js,.ts,.vue"
},
"dependencies": {
"@nuxt/kit": "^3.0.0",
"standard-version": "^9.3.2"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"eslint": "latest",
"nuxt": "^3.0.0"
},
"keywords": [
"nuxt",
"directus",
"nuxtjs",
"nuxt-module",
"vue3",
"nuxt3",
"directus-module",
"nuxt-directus",
"nuxtdirectus",
"nuxt-community"
]
}