-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
100 lines (100 loc) · 2.77 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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@prismicio/vue",
"version": "3.1.2",
"description": "Vue plugin, components, and composables to fetch and present Prismic content",
"keywords": [
"typescript",
"prismic",
"vue",
"plugin"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/prismicio/prismic-vue.git"
},
"license": "Apache-2.0",
"author": "Prismic <[email protected]> (https://prismic.io)",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"vetur"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"format": "prettier --write .",
"lint": "eslint --ext .js,.ts .",
"playground:build": "vite build playground",
"playground:dev": "vite playground",
"prepare": "npm run build",
"release": "npm run test && standard-version && git push --follow-tags && npm run build && npm publish",
"release:beta": "npm run test && standard-version --release-as major --prerelease beta && git push --follow-tags && npm run build && npm publish --tag beta",
"release:beta:dry": "standard-version --release-as major --prerelease beta --dry-run",
"release:dry": "standard-version --dry-run",
"size": "size-limit",
"test": "npm run lint && npm run types && npm run unit && npm run build && npm run size",
"types": "tsc --noEmit",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch"
},
"dependencies": {
"@prismicio/client": "^6.7.3",
"@prismicio/helpers": "^2.3.9",
"@prismicio/types": "^0.2.7",
"isomorphic-unfetch": "^3.1.0",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@prismicio/mock": "^0.2.0",
"@size-limit/preset-small-lib": "^8.2.4",
"@types/jsdom-global": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.29.2",
"@vue/compiler-sfc": "^3.2.47",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.3.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-vue": "^9.9.0",
"jsdom": "^21.1.1",
"jsdom-global": "^3.0.2",
"prettier": "^2.8.4",
"prettier-plugin-jsdoc": "^0.4.2",
"size-limit": "^8.2.4",
"standard-version": "^9.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-sdk": "^0.1.1",
"vitest": "^0.29.2",
"vue": "^3.2.47"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"engines": {
"node": ">=14.15.0"
},
"publishConfig": {
"access": "public"
},
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
}
}