corerender/package.json

73 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2025-01-01 07:33:33 +01:00
{
"name": "corerender",
2025-01-01 07:44:05 +01:00
"version": "2.0.62",
"description": "A rendering service designed for serve.zone that efficiently preserves styles while rendering web components.",
2025-01-01 07:33:33 +01:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "UNLICENSED",
"scripts": {
"test": "(tstest test/)",
"start": "(node --max_old_space_size=200 ./cli.js)",
"startTs": "(node cli.ts.js)",
"watch": "tswatch service",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@git.zone/tswatch": "^2.0.7",
"@push.rocks/tapbundle": "^5.0.8"
},
"dependencies": {
"@api.global/typedserver": "^3.0.53",
"@push.rocks/projectinfo": "^5.0.1",
"@push.rocks/smartdata": "^5.0.14",
"@push.rocks/smartdelay": "^3.0.1",
"@push.rocks/smartlog": "^3.0.7",
"@push.rocks/smartpath": "^5.0.5",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartrequest": "^2.0.15",
"@push.rocks/smartrobots": "^1.0.2",
"@push.rocks/smartsitemap": "^2.0.1",
"@push.rocks/smartssr": "^1.0.40",
"@push.rocks/smartstate": "^2.0.6",
"@push.rocks/smarttime": "^4.0.1",
"@push.rocks/taskbuffer": "^3.0.10"
},
"private": true,
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
],
"type": "module",
"keywords": [
"rendering",
"web components",
"style preservation",
"TypeScript",
"SSR",
"prerendering",
"task scheduling",
"web application",
"service integration",
"database management",
"sitemap parsing",
"robots.txt",
"node.js"
]
2025-01-01 07:44:05 +01:00
}