typelit
Version:
A type-safe string templating library for TypeScript
71 lines (70 loc) • 1.85 kB
JSON
{
"name": "typelit",
"version": "0.1.2",
"description": "A type-safe string templating library for TypeScript",
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"browser": "dist/umd/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"!src/**/*.test.ts",
"!src/**/*.test-d.ts"
],
"scripts": {
"lint": "prettier --check . && eslint --max-warnings=0",
"test": "vitest",
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run lint && npm run test",
"prepack": "rimraf dist && npm run build"
},
"keywords": [
"typescript",
"template",
"templating",
"string-templates",
"string-interpolation",
"type-safe",
"type-inference",
"strongly-typed",
"string-formatting",
"string-manipulation",
"text-processing",
"interpolation",
"type-checking",
"zero-dependencies",
"zero-runtime"
],
"author": "Charles Francoise <charles.francoise@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/loderunner/typelit.git"
},
"bugs": {
"url": "https://github.com/loderunner/typelit/issues"
},
"homepage": "https://github.com/loderunner/typelit#readme",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "9.16.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.1",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.0",
"globals": "15.13.0",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"rollup": "4.28.0",
"rollup-plugin-dts": "6.1.1",
"tslib": "2.8.1",
"typescript": "5.7.2",
"typescript-eslint": "8.17.0",
"vitest": "2.1.8"
}
}