-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.09 KB
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
{
"name": "create-markdown-sync",
"version": "0.2.1",
"description": "Create a markdown-sync site with a single command",
"main": "dist/index.js",
"bin": {
"create-markdown-sync": "dist/index.js"
},
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js"
},
"keywords": [
"markdown",
"blog",
"convex",
"cli",
"scaffolding",
"create",
"static-site",
"cms"
],
"author": "Wayne Sutton",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/waynesutton/markdown-site"
},
"bugs": {
"url": "https://github.com/waynesutton/markdown-site/issues"
},
"homepage": "https://github.com/waynesutton/markdown-site#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"execa": "^8.0.1",
"giget": "^3.1.2",
"kleur": "^4.1.5",
"open": "^10.1.0",
"ora": "^8.0.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/prompts": "^2.4.9",
"typescript": "^5.2.2"
}
}