sajt/package.json

57 lines
1.3 KiB
JSON

{
"name": "sajt",
"version": "0.0.2",
"type": "module",
"description": "Static site generator based on pug/html and yaml files",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron ./src/desktop/main.js",
"watch": "tsc --watch",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"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"
},
"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"
},
"devDependencies": {
"@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"
}
}