-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
74 lines (74 loc) · 1.87 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "nuxt-mongoose",
"type": "module",
"version": "1.0.6",
"private": false,
"packageManager": "[email protected]",
"description": "Nuxt 3 module for MongoDB with Mongoose",
"license": "MIT",
"funding": "https://github.com/sponsors/arashsheyda",
"homepage": "https://docs.arashsheyda.me/nuxt-mongoose",
"repository": {
"type": "git",
"url": "git+https://github.com/arashsheyda/nuxt-mongoose"
},
"bugs": {
"url": "https://github.com/arashsheyda/nuxt-mongoose/issues"
},
"keywords": [
"nuxt",
"mongoose",
"mongodb",
"devtools"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"build": {
"externals": [
"ofetch"
]
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build && npm run build:client",
"build:client": "nuxi generate client",
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build && nuxi prepare client",
"dev:client": "nuxi dev client --port 3300",
"dev:prod": "npm run build && npm run dev",
"release": "npm run lint && npm run build && changelogen --release && npm publish",
"lint": "eslint . --fix"
},
"dependencies": {
"@nuxt/devtools-kit": "1.0.8",
"@nuxt/devtools-ui-kit": "1.0.8",
"@nuxt/kit": "^3.9.3",
"@vueuse/core": "^10.7.2",
"defu": "^6.1.4",
"fs-extra": "^11.2.0",
"mongoose": "^8.1.0",
"ofetch": "^1.3.3",
"pathe": "^1.1.2",
"pluralize": "^8.0.0",
"sirv": "^2.0.4"
},
"devDependencies": {
"@antfu/eslint-config": "2.6.3",
"@nuxt/module-builder": "^0.5.5",
"@types/fs-extra": "^11.0.4",
"@types/pluralize": "^0.0.33",
"changelogen": "^0.5.5",
"eslint": "8.56.0",
"nuxt": "^3.9.3",
"sass": "^1.69.7"
}
}