htmplate
Version:
Create HTML templates using HTM
66 lines (65 loc) • 1.75 kB
JSON
{
"name": "htmplate",
"version": "0.1.0",
"description": "Create HTML templates using HTM",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"scripts": {
"sample": "vite sample",
"test": "jest",
"lint": "eslint .",
"typecheck": "tsc -p conf/typescript/es.json --noEmit",
"coverage": "jest --coverage",
"build-commonjs": "tsc -p conf/typescript/commonjs.json",
"build-es": "tsc -p conf/typescript/es.json",
"build": "npm run build-commonjs && npm run build-es",
"prepack": "npm run build"
},
"files": [
"dist/es",
"dist/commonjs"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/loreanvictor/htmplate.git"
},
"keywords": [
"HTM",
"template",
"HTML",
"DOM",
"HyperScript"
],
"author": "Eugene Ghanizadeh Khoub",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreanvictor/htmplate/issues"
},
"homepage": "https://github.com/loreanvictor/htmplate#readme",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.15",
"@types/vhtml": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"babel-jest": "^29.3.1",
"eslint": "^8.29.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.1"
},
"dependencies": {
"htm": "^3.1.1",
"vhtml": "^2.2.0"
}
}