sajt/package.json
2025-06-08 21:57:33 +02:00

54 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.4.1",
"commander": "^14.0.0",
"express": "^5.1.0",
"fs-extra": "^11.3.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"js-yaml": "^4.1.0",
"marked": "^15.0.12",
"marked-highlight": "^2.2.1",
"pug": "^3.0.3"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.30",
"@types/pug": "^2.0.10",
"typescript": "^5.8.3"
}
}