netherte
Version:
A template engine that supports custom filters and compiles templates into rendering functions.
34 lines • 892 B
JSON
{
"name": "netherte",
"version": "1.0.2-alpha.1",
"description": "A template engine that supports custom filters and compiles templates into rendering functions.",
"main": "dist/NetherTE.js",
"module": "src/NetherTE.ts",
"types": "src/NetherTE.ts",
"scripts": {
"build:nte": "bun build src/NetherTE.ts --outfile=dist/NetherTE.js --minify",
"build:ntee": "bun build src/NetherTEExtra.ts --outfile=dist/NetherTEExtra.js --minify",
"build": "bun run build:nte && bun run build:ntee",
"test": "bun test"
},
"keywords": [
"template-engine",
"typescript",
"custom-filters"
],
"author": "WolfYangFan",
"license": "WTFPL",
"type": "module",
"files": [
"dist",
"README.md",
"package.json"
],
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}