-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 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
{
"name": "@4awpawz/fusion.ssg",
"type": "module",
"version": "1.3.0",
"description": "Minimal SSG Framework for Static Websites",
"bin": {
"fusion": "dist/bin/fusion.js"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc --build --force --watch"
},
"keywords": [
"static-site-generator",
"static-website-generator",
"site-generator",
"website-generator",
"blog-engine",
"blog-aware",
"markup",
"markdown",
"html",
"javascript",
"typescript",
"components"
],
"author": "Jeffrey Schwartz",
"repository": {
"type": "git",
"url": "https://github.com/4awpawz/fusion.ssg"
},
"license": "MIT",
"devDependencies": {
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/js-beautify": "^1.13.3",
"@types/marked": "^4.3.1",
"@types/node": "^18.16.14",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"typescript": "^5.0.4"
},
"dependencies": {
"@4awpawz/buster": "^1.1.1",
"chalk": "^5.2.0",
"fs-extra": "^11.2.0",
"glob": "^9.3.5",
"gray-matter": "^4.0.3",
"js-beautify": "^1.14.7",
"marked": "^4.3.0",
"preact-render-to-string": "^5.2.6"
}
}