-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "jakyll",
"version": "0.5.7",
"description": "Node.js Jekyll alternative",
"type": "commonjs",
"bin": {
"jakyll": "dist/index.js"
},
"engines": {
"npm": ">=8",
"node": ">=18"
},
"scripts": {
"build": "rm -rf dist && tsc && cp -r src/assets dist/assets",
"prepublish": "npm run build",
"postinstall": "node dist/postinstall.js && mkdir -p $INIT_CWD/.github/workflows && cp dist/assets/action.yml $INIT_CWD/.github/workflows/jakyll-deploy.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iambriansreed/jakyll.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/iambriansreed/jakyll/issues"
},
"homepage": "https://github.com/iambriansreed/jakyll#readme",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/node": "^20.11.19",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.6.0",
"commander": "^12.0.0",
"gh-pages": "^6.0.0",
"http-server": "^14.1.1",
"liquidjs": "^10.10.1",
"marked": "^10.0.0"
}
}