smartntml/package.json

57 lines
1.3 KiB
JSON
Raw Normal View History

2022-05-28 15:29:36 +00:00
{
2023-07-10 08:16:59 +00:00
"name": "@push.rocks/smartntml",
2023-05-01 12:02:26 +00:00
"version": "2.0.4",
2022-05-28 15:29:36 +00:00
"private": false,
2024-04-14 16:04:25 +00:00
"description": "Provides lit-html rendering capabilities for backend applications.",
2022-05-28 15:29:36 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2023-05-01 11:03:55 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2022-05-28 15:29:36 +00:00
},
"devDependencies": {
2022-09-27 18:04:46 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsbundle": "^2.0.7",
2023-03-30 09:19:12 +00:00
"@gitzone/tsrun": "^1.2.39",
2022-09-27 18:04:46 +00:00
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.4",
2023-03-30 09:02:15 +00:00
"@types/node": "^18.7.23",
"why-is-node-running": "^2.2.2"
2022-05-28 15:29:36 +00:00
},
"dependencies": {
2023-03-30 09:02:15 +00:00
"@designestate/dees-element": "^2.0.20",
"@happy-dom/global-registrator": "^8.9.0",
2023-05-01 11:03:32 +00:00
"@pushrocks/smartpromise": "^3.1.7",
"fake-indexeddb": "^4.0.1"
2022-05-28 15:29:36 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 16:04:25 +00:00
],
"keywords": [
"backend rendering",
"lit-html",
"template rendering",
"server-side rendering",
"html template",
"web components",
"happy-dom",
"indexeddb",
"typescript"
2022-05-28 15:29:36 +00:00
]
2023-07-10 08:16:59 +00:00
}