-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
89 lines (89 loc) · 2.46 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@nuxtjs/prismic",
"version": "3.4.3",
"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.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./runtime/*": "./dist/runtime/*",
"./package.json": "./package.json"
},
"main": "dist/module.cjs",
"types": "dist/types.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run build:module && npm run build:client",
"build:client": "nuxt generate client",
"build:module": "nuxt-module-build build",
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:preview": "nuxt preview playground",
"dev:generate": "nuxt generate playground",
"prepare": "nuxt prepare playground && npm run build",
"release": "npm run test && standard-version && git push --follow-tags && npm run build && npm publish",
"release:dry": "standard-version --dry-run",
"release:rc": "npm run test && standard-version --release-as major --prerelease rc && git push --follow-tags && npm run build && npm publish --tag rc",
"release:rc:dry": "standard-version --release-as major --prerelease rc --dry-run",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch",
"test": "npm run typecheck && npm run lint && npm run unit && npm run build"
},
"dependencies": {
"@nuxt/devtools-kit": "^1.5.2",
"@nuxt/kit": "^3.13.2",
"@prismicio/client": "^7.11.0",
"@prismicio/vue": "^4.3.0",
"birpc": "0.2.17",
"consola": "^3.2.3",
"defu": "^6.1.4",
"pathe": "^1.1.2",
"sirv": "^2.0.4",
"terminate": "^2.8.0"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.1",
"@iconify-json/logos": "^1.2.2",
"@nuxt/devtools-ui-kit": "^1.4.2",
"@nuxt/eslint-config": "^0.5.7",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.2",
"@unocss/preset-icons": "^0.63.2",
"@vitest/coverage-v8": "^2.1.2",
"eslint": "^9.11.1",
"memfs": "^4.12.0",
"nuxt": "^3.13.2",
"standard-version": "^9.5.0",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
},
"engines": {
"node": ">=16.10.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@9.3.0"
}