smartssr/package.json

61 lines
1.5 KiB
JSON
Raw Normal View History

2020-02-12 21:31:22 +00:00
{
2023-07-27 10:37:27 +00:00
"name": "@push.rocks/smartssr",
2023-07-27 10:37:28 +00:00
"version": "1.0.38",
2020-02-12 21:31:22 +00:00
"private": false,
2024-04-14 16:23:21 +00:00
"description": "A smart server-side renderer that supports shadow DOM.",
2020-08-06 15:17:01 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2020-02-12 21:31:22 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2023-05-01 12:42:57 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2023-05-01 12:38:53 +00:00
"serve": "tsrun scripts/serve.ts",
"buildDocs": "tsdoc"
2020-02-12 21:31:22 +00:00
},
"devDependencies": {
2023-07-27 10:37:27 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.4.5"
2020-02-12 21:31:22 +00:00
},
"dependencies": {
2023-07-27 10:37:27 +00:00
"@push.rocks/smartdelay": "^3.0.1",
"@push.rocks/smartfile": "^10.0.26",
"@push.rocks/smartpath": "^5.0.5",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartpuppeteer": "^2.0.2",
"@push.rocks/smarttime": "^4.0.1"
2020-02-12 21:31:22 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-08-06 15:17:01 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-12 21:31:22 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-08-06 15:17:01 +00:00
],
"browserslist": [
"last 1 chrome versions"
2023-05-01 12:38:53 +00:00
],
2024-04-14 16:23:21 +00:00
"type": "module",
"keywords": [
"server-side rendering",
"shadow DOM",
"TypeScript",
"puppeteer",
"serialization",
"web development",
"node.js"
2024-05-29 12:16:30 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartssr",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartssr.git"
}
2024-04-14 16:23:21 +00:00
}