Files
strata-compile/package.json
2026-01-16 09:25:50 -05:00

40 lines
1.0 KiB
JSON

{
"name": "strata-compile",
"version": "0.1.0",
"description": "Strata - Static Template Rendering Architecture. Fast, modern framework with static-first approach and zero runtime overhead.",
"keywords": [
"frontend",
"framework",
"jamstack",
"static",
"compiler",
"template",
"strata",
"build-tool"
],
"author": "Carlos Gutierrez (CarGDev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CarGDev/strata-compile.git"
},
"homepage": "https://github.com/CarGDev/strata-compile",
"bin": {
"strata-compile": "./bin/strata-compile"
},
"files": [
"bin",
"templates"
],
"scripts": {
"build": "cd compiler && go build -ldflags='-s -w' -o ../bin/strata-compile ./cmd/strata",
"prepublishOnly": "npm run build",
"postinstall": "node -e \"try { require('fs').chmodSync('./bin/strata-compile', '755') } catch(e) {}\""
},
"dependencies": {},
"devDependencies": {},
"engines": {
"node": ">=18.0.0"
}
}