- Static compiler with STRC pattern (Static Template Resolution with
Compartmentalized Layers)
- Template syntax: { } interpolation, { s-for }, { s-if/s-elif/s-else
}
- File types: .strata, .compiler.sts, .service.sts, .api.sts, .sts,
.scss
- CLI tools: strata-compile dev, strata-compile build, strata-compile
g (generators)
- create-strata-compile scaffolding CLI with Pokemon API example
- Dev server with WebSocket HMR (Hot Module Replacement)
- Documentation: README, ARCHITECTURE, CHANGELOG, CONTRIBUTING,
LICENSE
25 lines
430 B
JSON
25 lines
430 B
JSON
{
|
|
"name": "create-strata-compile",
|
|
"version": "0.1.0",
|
|
"description": "Create a new Strata project",
|
|
"bin": {
|
|
"create-strata-compile": "./index.js"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"templates"
|
|
],
|
|
"scripts": {
|
|
"test": "node index.js --help"
|
|
},
|
|
"keywords": [
|
|
"strata",
|
|
"strata-compile",
|
|
"create",
|
|
"scaffold",
|
|
"cli"
|
|
],
|
|
"author": "Carlos Gutierrez (CarGDev)",
|
|
"license": "MIT"
|
|
}
|