-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "@contentful/vercel-nextjs-toolkit",
"version": "1.4.1",
"author": "Contentful",
"license": "MIT",
"description": "Contentful helper SDK for Vercel platform app integration to enable live preview",
"source": "./lib/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
"./app-router": {
"import": "./dist/app-router.js",
"require": "./dist/app-router.cjs",
"types": "./dist/app-router/index.d.ts"
},
"./pages-router": {
"import": "./dist/pages-router.js",
"require": "./dist/pages-router.cjs",
"types": "./dist/pages-router/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/contentful/vercel-nextjs-toolkit.git"
},
"bugs": {
"url": "https://github.com/contentful/vercel-nextjs-toolkit/issues"
},
"scripts": {
"prepack": "npm run build",
"build": "tsc && vite build",
"test": "vitest"
},
"homepage": "https://github.com/contentful/vercel-nextjs-toolkit#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.12.7",
"semantic-release": "^23.0.8",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.0",
"vitest": "^1.5.0"
},
"peerDependencies": {
"next": "^14.2.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
}
}