-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.94 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
{
"name": "simplest-sitegen",
"version": "0.13.1",
"author": "Andreas Söderlund <ciscoheat@gmail.com> (https://blog.encodeart.dev)",
"description": "The simplest static sitegen there is. Build a modern, fully working website with only HTML.",
"repository": {
"url": "https://github.com/ciscoheat/simplest-sitegen"
},
"bin": {
"simplest": "dist/cli.js"
},
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "pnpm tsc-watch --noClear --onSuccess \"pnpm test\"",
"dev:quiet": "pnpm tsc-watch --noClear --onSuccess \"pnpm test -- --quiet\"",
"prepublishOnly": "tsc",
"start": "node dist/cli.js",
"test": "node dist/test.js",
"watch": "tsc -w"
},
"keywords": [
"static-site-generator",
"static-site",
"ssg",
"website",
"generator",
"html"
],
"license": "MIT",
"dependencies": {
"ansi-colors": "^4.1.3",
"browser-sync": "^2.27.10",
"debug": "^4.3.4",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"minimist": "^1.2.6",
"node-html-parser": "5.4.2-0",
"node_modules-path": "^2.0.6",
"pug": "^3.0.2",
"sane": "^5.0.1",
"sass": "^1.55.0",
"svelte": "^3.50.1",
"temp": "^0.9.4",
"template-html": "^0.3.2",
"terser": "^5.15.0",
"throttle-debounce": "^5.0.0",
"upath": "^2.0.1"
},
"devDependencies": {
"@npmcli/disparity-colors": "^2.0.0",
"@types/browser-sync": "^2.26.3",
"@types/debug": "^4.1.7",
"@types/diff": "^5.0.2",
"@types/fs-extra": "^9.0.13",
"@types/markdown-it": "^12.2.3",
"@types/minimist": "^1.2.2",
"@types/node": "^18.7.18",
"@types/pug": "^2.0.6",
"@types/sane": "^2.0.1",
"@types/temp": "^0.9.1",
"@types/throttle-debounce": "^5.0.0",
"diff": "^5.1.0",
"dir-compare": "^4.0.0",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.3"
}
}