Files
corerender/package.json
T

77 lines
2.0 KiB
JSON
Raw 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",
2026-05-07 20:22:12 +00:00
"author": "Task Venture Capital GmbH",
"license": "MIT",
2025-01-01 07:33:33 +01:00
"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)",
2026-04-29 13:53:20 +00:00
"buildDocs": "tsdoc",
"build:docker": "tsdocker build --verbose",
"release:docker": "tsdocker push --verbose"
2025-01-01 07:33:33 +01:00
},
"devDependencies": {
2026-04-29 13:53:20 +00:00
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdocker": "^2.2.4",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.3",
"@git.zone/tswatch": "^3.3.2",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^25.6.0"
2025-01-01 07:33:33 +01:00
},
"dependencies": {
2026-04-29 13:53:20 +00:00
"@api.global/typedserver": "^8.4.6",
"@push.rocks/projectinfo": "^5.1.0",
"@push.rocks/smartdata": "^7.1.7",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartlog": "^3.2.2",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrequest": "^5.0.1",
2025-01-01 07:33:33 +01:00
"@push.rocks/smartrobots": "^1.0.2",
2026-04-29 13:53:20 +00:00
"@push.rocks/smartsitemap": "^4.0.1",
2025-01-01 07:33:33 +01:00
"@push.rocks/smartssr": "^1.0.40",
2026-04-29 13:53:20 +00:00
"@push.rocks/smartstate": "^2.3.0",
"@push.rocks/smarttime": "^4.2.3",
"@push.rocks/taskbuffer": "^8.0.2"
2025-01-01 07:33:33 +01:00
},
"private": true,
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
2026-04-29 13:53:20 +00:00
".smartconfig.json",
2025-01-01 07:33:33 +01:00
"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
}