-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.96 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.96 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
{
"name": "@nuxtjs/prismic",
"version": "5.2.1",
"description": "Easily connect your Nuxt application to your content hosted on Prismic",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"typescript",
"prismic",
"cms"
],
"repository": {
"type": "git",
"url": "ssh://git@github.com/nuxt-modules/prismic.git"
},
"license": "MIT",
"author": "Nuxt.js Community",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./runtime/*": "./dist/runtime/*",
"./package.json": "./package.json"
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"./dist",
"./src"
],
"scripts": {
"build": "nuxt-module-build build",
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:preview": "nuxt preview playground",
"dev:generate": "nuxt generate playground",
"format": "prettier --write .",
"prepare": "nuxt-module-build prepare && npm run build",
"lint": "oxlint --deny-warnings",
"types": "vue-tsc --noEmit",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch",
"test": "npm run lint && npm run types && npm run unit && npm run build"
},
"dependencies": {
"@nuxt/kit": "^4.4.2",
"@prismicio/vue": "^6.1.3",
"defu": "^6.1.7",
"nypm": "^0.6.5",
"pkg-types": "^2.3.0"
},
"devDependencies": {
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.2",
"@nuxt/test-utils": "^3.23.0",
"@prismicio/client": "^7.21.8",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.3",
"nuxt": "^4.4.2",
"oxlint": "^1.59.0",
"prettier": "^3.8.1",
"prettier-plugin-jsdoc": "^1.8.0",
"typescript": "^6.0.2",
"vitest": "^4.1.3",
"vue-tsc": "^3.2.6"
},
"peerDependencies": {
"@prismicio/client": "^7.21.8"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.28.0"
}