Files
smartssr/package.json
T

65 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2020-02-12 21:31:22 +00:00
{
2023-07-27 12:37:27 +02:00
"name": "@push.rocks/smartssr",
2026-05-01 16:40:11 +00:00
"version": "1.0.41",
2020-02-12 21:31:22 +00:00
"private": false,
2024-04-14 18:23:21 +02:00
"description": "A smart server-side renderer that supports shadow DOM.",
"exports": {
".": "./dist_ts/index.js"
},
2020-08-06 15:17:01 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2020-02-12 21:31:22 +00:00
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild --web",
2023-05-01 14:38:53 +02:00
"serve": "tsrun scripts/serve.ts",
"buildDocs": "tsdoc"
2020-02-12 21:31:22 +00: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"
2020-02-12 21:31:22 +00:00
},
"dependencies": {
2023-07-27 12:37:27 +02:00
"@push.rocks/smartdelay": "^3.0.1",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.4",
"@push.rocks/smartpuppeteer": "^2.0.6",
"@push.rocks/smarttime": "^4.2.3"
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",
".smartconfig.json",
"license",
2020-02-12 21:31:22 +00:00
"npmextra.json",
"readme.md"
2020-08-06 15:17:01 +00:00
],
"browserslist": [
"last 1 chrome versions"
2023-05-01 14:38:53 +02:00
],
2024-04-14 18:23:21 +02:00
"type": "module",
"keywords": [
"server-side rendering",
"shadow DOM",
"TypeScript",
"puppeteer",
"serialization",
"web development",
"node.js"
2024-05-29 14:16:30 +02:00
],
"homepage": "https://code.foss.global/push.rocks/smartssr",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartssr.git"
}
2025-01-01 07:14:01 +01:00
}