Files
strata-compile/examples/basic-app/package.json
Carlos Gutierrez a63a758cc5 feat: initial release of Strata framework v0.1.0
- 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
2026-01-16 09:13:14 -05:00

15 lines
285 B
JSON

{
"name": "strata-example-basic",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "strata-compile dev",
"build": "strata-compile build",
"preview": "strata-compile preview"
},
"dependencies": {},
"devDependencies": {
"typescript": "^5.3.0"
}
}