sajt/package.json

55 lines
1.3 KiB
JSON
Raw Normal View History

2024-08-15 19:52:42 +02:00
{
"name": "sajt",
2024-10-11 11:11:40 +02:00
"version": "0.0.2",
"type": "module",
2024-08-15 19:52:42 +02:00
"description": "Static site generator based on pug/html and yaml files",
2025-02-24 18:46:31 +01:00
"main": "dist/index.js",
2024-08-15 19:52:42 +02:00
"scripts": {
2024-10-17 23:51:03 +02:00
"test": "echo \"Error: no test specified\" && exit 1",
2025-02-24 18:46:31 +01:00
"start": "electron ./src/desktop/main.js",
"watch": "tsc --watch",
"build": "tsc",
"prepublishOnly": "npm run build"
2024-08-15 19:52:42 +02:00
},
"bin": {
"sajt": "./bin/sajt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artur-gurgul-pro/sajt.git"
},
"keywords": [
"generator",
"utils",
"static",
"sites",
"ssh",
"ftp"
],
"author": "Artur Gurgul",
"license": "ISC",
"bugs": {
"url": "https://github.com/artur-gurgul-pro/sajt/issues"
},
2024-10-11 11:11:40 +02:00
"homepage": "https://github.com/artur-gurgul-pro/sajt#readme",
"dependencies": {
2025-06-08 21:57:33 +02:00
"chalk": "^5.4.1",
"commander": "^14.0.0",
"express": "^5.1.0",
"fs-extra": "^11.3.0",
2024-10-11 11:11:40 +02:00
"gray-matter": "^4.0.3",
2025-06-08 21:57:33 +02:00
"highlight.js": "^11.11.1",
2024-10-11 11:11:40 +02:00
"js-yaml": "^4.1.0",
2025-06-08 21:57:33 +02:00
"marked": "^15.0.12",
"marked-highlight": "^2.2.1",
"pug": "^3.0.3"
2024-10-17 23:51:03 +02:00
},
"devDependencies": {
2025-06-08 21:57:33 +02:00
"@types/express": "^5.0.2",
2025-02-24 18:46:31 +01:00
"@types/js-yaml": "^4.0.9",
2025-06-08 21:57:33 +02:00
"@types/node": "^22.15.30",
2025-02-24 18:46:31 +01:00
"@types/pug": "^2.0.10",
2025-06-08 21:57:33 +02:00
"typescript": "^5.8.3"
2024-10-11 11:11:40 +02:00
}
2024-08-15 19:52:42 +02:00
}