-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
92 lines (92 loc) · 2.55 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
{
"name": "eleventy-plugin-prismic",
"version": "1.0.1",
"description": "Eleventy plugin and shortcodes to fetch and present Prismic content",
"keywords": [
"eleventy",
"eleventy-plugin",
"11ty",
"11ty-plugin",
"typescript",
"prismic"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/prismicio-community/eleventy-plugin-prismic.git"
},
"license": "MIT",
"author": "Lucie Haberer <[email protected]> (https://lihbr.com)",
"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"
],
"workspaces": [
".",
"playground"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"format": "prettier --write .",
"prepare": "npm run build",
"playground:build": "cd playground && cross-env DEBUG=Eleventy:Prismic* eleventy",
"playground:dev": "cd playground && cross-env DEBUG=Eleventy:Prismic* eleventy --serve",
"release": "npm run test && standard-version && git push --follow-tags && npm run build && npm publish",
"release:dry": "standard-version --dry-run",
"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",
"lint": "eslint --ext .js,.ts .",
"types": "tsc --noEmit",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch",
"test": "npm run lint && npm run types && npm run unit && npm run build"
},
"dependencies": {
"@netlify/functions": "^1.3.0",
"@prismicio/client": "^7.0.0-alpha.0",
"dayjs": "^1.11.7",
"debug": "^4.3.4",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@types/debug": "^4.1.7",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@vitest/coverage-c8": "^0.26.0",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"msw": "^0.49.2",
"prettier": "^2.8.1",
"standard-version": "^9.5.0",
"type-fest": "^3.4.0",
"typescript": "^4.9.4",
"vite": "^4.0.2",
"vite-plugin-sdk": "^0.1.0",
"vitest": "^0.26.1"
},
"peerDependencies": {
"@11ty/eleventy": ">=1.0.0"
},
"engines": {
"node": ">=14.15.0"
},
"publishConfig": {
"access": "public"
}
}