-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
95 lines (95 loc) · 2.82 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
{
"name": "contentful-hugo",
"type": "module",
"version": "4.0.2",
"packageManager": "[email protected]",
"description": "Node module that pulls data from Contentful and turns it into markdown files for Hugo. Can be used with other Static Site Generators, but has some Hugo specific features.",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"bin": {
"contentful-hugo": "./dist/cli.mjs"
},
"files": [
"dist",
"postInstall.js"
],
"repository": {
"typ": "git",
"url": "https://github.com/ModiiMedia/contentful-hugo"
},
"keywords": [
"hugo",
"contentful",
"blog",
"markdown",
"yaml",
"ssg",
"website",
"static-site-generator",
"jamstack",
"frontmatter",
"static-site"
],
"author": {
"name": "Joshua Sosso",
"email": "[email protected]",
"url": "https://www.modiimedia.com"
},
"scripts": {
"test": "vitest run --coverage",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"postinstall": "node postInstall.js",
"prebuild": "pnpm run lint",
"build": "tsc --noEmit && unbuild",
"postbuild": "jiti ./copyAssets.ts",
"prepare": "pnpm run build",
"server-dev": "pnpm run build && node dist/cli.mjs --server"
},
"license": "ISC",
"dependencies": {
"@contentful/rich-text-html-renderer": "^16.5.2",
"@contentful/rich-text-plain-text-renderer": "^16.1.3",
"@contentful/rich-text-types": "^16.5.2",
"async-limiter": "^2.0.0",
"c12": "^1.10.0",
"chokidar": "^3.6.0",
"citty": "^0.1.6",
"contentful": "^10.11.8",
"dotenv": "^16.4.5",
"fastify": "^4.27.0",
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"json-to-pretty-yaml": "^1.2.2",
"pathe": "^1.1.2"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@modii/tscpaths": "^0.2.3",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/json-to-pretty-yaml": "^1.2.1",
"@types/node": "^20.14.2",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.8.1",
"jiti": "^1.21.3",
"prettier": "^3.3.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0",
"unbuild": "^2.0.0",
"vite": "^5.2.13",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}