-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.28 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.28 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"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.mts",
"import": "./dist/module.mjs"
}
},
"build": {
"externals": [
"ofetch"
]
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "pnpm build && pnpm build:client",
"build": "nuxt-module-build build",
"build:client": "nuxi generate client",
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare client && nuxi prepare playground",
"dev:client": "nuxi dev client --port 3300",
"preview": "pnpm prepack && pnpm dev",
"release": "pnpm run lint && pnpm run test && pnpm run build && changelogen --release && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/devtools-kit": "^3.1.1",
"@nuxt/devtools-ui-kit": "^3.1.1",
"@nuxt/kit": "^4.2.2",
"@vueuse/core": "^14.1.0",
"defu": "^6.1.4",
"fs-extra": "^11.2.0",
"mongoose": "^9.0.2",
"ofetch": "^1.3.3",
"pathe": "^2.0.3",
"pluralize": "^8.0.0",
"sirv": "^3.0.2"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.12.1",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/test-utils": "^3.21.0",
"@types/fs-extra": "^11.0.4",
"@types/pluralize": "^0.0.33",
"changelogen": "^0.6.2",
"eslint": "^9.39.1",
"nuxt": "^4.2.2",
"sass": "^1.97.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16",
"vue-tsc": "^3.1.8"
}
}