-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.78 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.78 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
{
"name": "@prismicio/vue",
"version": "6.1.3",
"description": "Vue plugin, components, and composables to fetch and present Prismic content",
"keywords": [
"plugin",
"prismic",
"typescript",
"vue"
],
"license": "Apache-2.0",
"author": "Prismic <contact@prismic.io> (https://prismic.io)",
"repository": {
"type": "git",
"url": "ssh://git@github.com/prismicio/prismic-vue.git"
},
"files": [
"./dist",
"./src"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"format": "oxfmt",
"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": {
"@prismicio/simulator": "^0.2.2",
"esm-env": "^1.2.2"
},
"devDependencies": {
"@prismicio/client": "^7.21.8",
"@prismicio/mock": "^0.7.2",
"@types/jsdom-global": "^3.0.7",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "^4.1.3",
"@vue/test-utils": "^2.4.6",
"jsdom": "^29.0.2",
"jsdom-global": "^3.0.2",
"oxfmt": "^0.44.0",
"oxlint": "1.59.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vite": "^8.0.7",
"vitest": "^4.1.3",
"vue": "^3.5.26",
"vue-router": "^5.0.4",
"vue-tsc": "^3.2.6"
},
"peerDependencies": {
"@prismicio/client": "^7",
"vue": "^3"
},
"engines": {
"node": ">=20"
}
}