sajt/package.json

58 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": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"express": "^4.19.2",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.10.0",
"js-yaml": "^4.1.0",
"marked": "^14.0.0",
"marked-highlight": "^2.1.4",
"pug": "^3.0.3",
"ssh2": "^1.15.0",
"ssh2-sftp-client": "^11.0.0"
2024-10-17 23:51:03 +02:00
},
"devDependencies": {
2025-02-24 18:46:31 +01:00
"@types/express": "^5.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.5",
"@types/pug": "^2.0.10",
"electron": "^33.0.1",
"typescript": "^5.7.3"
2024-10-11 11:11:40 +02:00
}
2024-08-15 19:52:42 +02:00
}