Files
n8n-nodes-gwezz-changdunovel/node_modules/eta/package.json
2025-10-26 23:10:15 +08:00

68 lines
1.5 KiB
JSON

{
"name": "eta",
"version": "4.0.1",
"description": "Lightweight, fast, and powerful embedded JS template engine",
"keywords": [
"handlebars",
"ejs",
"eta",
"template engine",
"embedded template engine",
"layouts",
"partials",
"typescript types"
],
"homepage": "https://eta.js.org",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./index.d.ts"
},
"./core": {
"import": "./dist/core.js",
"types": "./dist/core.d.ts"
}
},
"types": "./dist/index.d.ts",
"browser": "./dist/core.js",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "biome check --error-on-warnings",
"format": "biome format --write",
"test": "vitest run --coverage",
"size": "size-limit"
},
"author": "Ben Gubler <nebrelbug@gmail.com>",
"funding": "https://github.com/bgub/eta?sponsor=1",
"repository": "github:bgub/eta",
"bugs": {
"url": "https://github.com/bgub/eta/issues"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"size-limit": [
{
"path": "dist/core.js",
"limit": "3.5 KB"
}
],
"devDependencies": {
"@biomejs/biome": "2.2.3",
"@size-limit/preset-small-lib": "^8.2.4",
"@types/node": "^22.18.1",
"@vitest/coverage-istanbul": "3.2.4",
"size-limit": "^8.2.4",
"tsdown": "^0.15.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}