UNPKG

handlebars-helpers-v2

Version:

Essential Handlebars helpers in TypeScript. A modernized collection of 8 core helper categories with TypeScript support and ESM compatibility.

128 lines 4.19 kB
{ "name": "handlebars-helpers-v2", "description": "Essential Handlebars helpers in TypeScript. A modernized collection of 8 core helper categories with TypeScript support and ESM compatibility.", "version": "2.2.0", "homepage": "https://github.com/nocodb/handlebars-helpers", "author": "Anbarasu (https://github.com/DarkPhoenix2704)", "contributors": [ "Jon Schlinkert (https://github.com/jonschlinkert)", "Adrián Mugnolo (https://github.com/xymbol)", "Aleš Kotnik (www.draagle.com)", "Alex Hunt (https://alexhunt.io)", "Ali Sheehan-Dare (https://github.com/alisd23)", "Anders D. Johnson (https://andrz.me)", "Arthur Cinader (http://github.com/acinader)", "Brian Woodward (https://twitter.com/doowb)", "Dan Dascalescu (http://dandascalescu.com)", "Dan Gorby (https://plus.google.com/+GreenRaccoon23)", "Dane Petersen (https://thegreatsunra.com)", "Daniel Wabyick (https://github.com/dwabyick)", "Dennis Borisevich (https://github.com/DenSpirit)", "Foundy (http://foundy.io)", "GONZO (https://github.com/why2pac)", "GracefulLight (https://brendaniel.github.io)", "Hariadi Hinta (http://www.hariadi.org)", "James Tsuyuki (https://github.com/jtsuyuki)", "Jan Stola (https://github.com/iamstolis)", "Jason Bellamy (http://jasonbellamy.com)", "Jeffrey Froom (http://jfroom.com)", "Jocelyn Badgley (http://www.chipersoft.com)", "Joey Baker (https://www.byjoeybaker.com)", "Jon Schlinkert (http://twitter.com/jonschlinkert)", "Kevin Davis (kevindav.us)", "Laurent Goderre (https://github.com/LaurentGoderre)", "Liam Moat (http://www.liammoat.com)", "Makoto Tateno (https://github.com/makotot)", "Marie Hogebrandt (http://mariehogebrandt.se)", "Mark Perkins (http://allmarkedup.com)", "Martyn Rushton (http://swapnull.co.uk)", "Max Albrecht (178.is)", "Michael Sheedy (michaelsheedy.com)", "Mikko Tapionlinna (http://mikko.tapionlinna.fi)", "Nathan Jessen (http://nathanjessen.github.io)", "Nathaniel Furniss (https://github.com/nlfurniss)", "Oleg Orlov (https://github.com/efender)", "Omesh (https://github.com/omeshp)", "Patrick Burtchaell (https://pburtchaell.com)", "Paul Welsh (paulwelsh.info)", "Raymond Camden (https://www.raymondcamden.com)", "Rob (https://github.com/robsilva)", "Sam Tiffin (https://samtiffin.com)", "Shannon Moeller (http://shannonmoeller.com)", "Spud Hsu (http://spud.in)", "Stephen Way (http://stephenway.net)", "Thomas Jaggi (http://responsive.ch)", "Tim Douglas (https://github.com/timdouglas)", "(https://github.com/homersimpsons)" ], "repository": "nocodb/handlebars-helpers", "bugs": { "url": "https://github.com/nocodb/handlebars-helpers/issues" }, "license": "MIT", "files": [ "dist", "README.md", "LICENSE" ], "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "engines": { "node": ">=20.0.0" }, "dependencies": { "array-sort": "^1.0.0", "create-frame": "^1.0.0", "for-in": "^1.0.2", "for-own": "^1.0.0", "get-value": "^2.0.6", "handlebars-utils": "^1.0.6", "has-value": "^1.0.0", "helper-date": "^1.0.1", "semver": "^7.7.2", "year": "^0.2.1" }, "devDependencies": { "@types/node": "^20.0.0", "handlebars": "^4.7.8", "mocha": "^10.0.0", "typescript": "^5.0.0" }, "keywords": [ "array", "collection", "comparison", "date", "handlebars", "helper", "helpers", "math", "number", "string", "template", "typescript", "url", "utility" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "pnpm build && mocha test/*.js", "lint": "echo 'Linting not configured yet'", "typecheck": "tsc --noEmit", "clean": "rm -rf dist", "prebuild": "pnpm clean", "pretest": "pnpm build", "release": "scripts/release.sh", "pack:test": "npm pack --dry-run", "pack:real": "npm pack" } }