Files
smartntml/package.json
T

64 lines
1.4 KiB
JSON
Raw Normal View History

2022-05-28 17:29:36 +02:00
{
2023-07-10 10:16:59 +02:00
"name": "@push.rocks/smartntml",
2026-05-01 18:10:45 +00:00
"version": "2.0.9",
2022-05-28 17:29:36 +02:00
"private": false,
2024-04-14 18:04:25 +02:00
"description": "Provides lit-html rendering capabilities for backend applications.",
"exports": {
".": "./dist_ts/index.js"
},
2022-05-28 17:29:36 +02:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2022-05-28 17:29:36 +02:00
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild --web",
2023-05-01 13:03:55 +02:00
"buildDocs": "tsdoc"
2022-05-28 17:29:36 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2022-05-28 17:29:36 +02:00
},
"dependencies": {
"@design.estate/dees-element": "^2.2.4",
"@happy-dom/global-registrator": "^20.9.0",
"fake-indexeddb": "^6.2.5"
2022-05-28 17:29:36 +02:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2022-05-28 17:29:36 +02:00
"npmextra.json",
"readme.md"
2024-04-14 18:04:25 +02:00
],
"keywords": [
"backend rendering",
"lit-html",
"template rendering",
"server-side rendering",
"html template",
"web components",
"happy-dom",
"indexeddb",
"typescript"
2024-05-29 14:15:06 +02:00
],
"homepage": "https://code.foss.global/push.rocks/smartntml",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartntml.git"
}
2024-10-13 12:12:35 +02:00
}