@tmorin/ceb-templating-builder
Version:
The package is part of the `<ceb/>` library. It provides a builder which enhances the definition of Custom Elements (v1) with a templating solution.
59 lines (58 loc) • 1.67 kB
JSON
{
"name": "@tmorin/ceb-templating-builder",
"version": "7.0.0",
"license": "MIT",
"description": "The package is part of the `<ceb/>` library. It provides a builder which enhances the definition of Custom Elements (v1) with a templating solution.",
"keywords": [
"custom-element-builder",
"custom-elements-v1",
"custom-elements",
"custom-element",
"typescript",
"typescript-library",
"javascript-library",
"template",
"template-engine",
"template-literal"
],
"homepage": "https://tmorin.github.io/ceb",
"bugs": {
"url": "https://github.com/tmorin/ceb/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:tmorin/ceb.git"
},
"author": {
"name": "Thibault Morin",
"url": "https://tmorin.github.io"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/mjs/index.js"
}
},
"types": "dist/types/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "npm run build:lib && npm run build:module && npm run build:fix",
"build:fix": "../../scripts/fix-dist.js",
"build:lib": "tsc -p tsconfig.build.json --module CommonJS --outDir dist/cjs --declaration --declarationDir dist/types",
"build:module": "tsc -p tsconfig.build.json --module ESNext --outDir dist/mjs"
},
"dependencies": {
"@tmorin/ceb-elements-core": "^7.0.0",
"@tmorin/ceb-templating-engine": "^7.0.0"
},
"gitHead": "94ca5cb8891ed6e4980cf0dffc643ba7eeafd08e"
}