forked from Oak-Digital/nextjs-strapi-plugin-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.95 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
{
"name": "@oak-digital/nextjs-strapi-image",
"description": "Small wrapper for next/image, to easily populate strapi media attributes",
"keywords": [
"nextjs",
"next",
"strapi",
"image"
],
"homepage": "https://github.com/Oak-Digital/nextjs-strapi-image",
"repository": "github:Oak-Digital/nextjs-strapi-image",
"private": false,
"license": "MIT",
"version": "0.0.4",
"files": [
"lib"
],
"main": "./lib/cjs/main.js",
"module": "./lib/esm/main.js",
"types": "./lib/esm/main.d.ts",
"scripts": {
"dev": "vite",
"build": "rimraf lib && pnpm build:cjs && pnpm build:esm",
"build:cjs": "tsc -p tsconfig.build.json",
"build:esm": "tsc -p tsconfig.build.esm.json",
"types": "t4s --in ./src/lib/strapi-src --out ./src/types/generated --prettier ./.prettierrc -D",
"preview": "vite preview",
"release": "bumpp",
"lint": "eslint .",
"format": "prettier -w .",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"next": ">= 13 <= 14.x"
},
"devDependencies": {
"@oak-digital/types-4-strapi-2": "^0.5.4",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react": "^3.0.1",
"bumpp": "^9.2.0",
"dts-bundle-generator": "^7.1.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-check-file": "^1.3.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vitest": "^0.0.30",
"next": "^13.3.4",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.2",
"vitest": "^0.28.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}