2018-12-28 00:23:13 +01:00
{
2024-03-30 21:49:21 +01:00
"name" : "@push.rocks/websetup" ,
2026-05-01 18:23:23 +00:00
"version" : "3.0.20" ,
2018-12-28 00:23:13 +01:00
"private" : false ,
2024-04-14 18:42:06 +02:00
"description" : "A library for setting up basic properties of a web page including meta tags, OpenGraph tags, JSON-LD structured data, with support for dynamic content." ,
2026-05-01 18:23:23 +00:00
"exports" : {
"." : "./dist_ts/index.js"
} ,
2020-03-15 19:11:14 +00:00
"main" : "dist_ts/index.js" ,
"typings" : "dist_ts/index.d.ts" ,
2026-05-01 18:23:23 +00:00
"author" : "Task Venture Capital GmbH <hello@task.vc>" ,
2018-12-28 00:23:13 +01:00
"license" : "MIT" ,
"scripts" : {
2026-05-01 18:23:23 +00:00
"test" : "tstest test/" ,
"build" : "tsbuild --web && tsbundle npm" ,
2023-05-07 20:24:53 +02:00
"buildDocs" : "tsdoc"
2018-12-28 00:23:13 +01:00
} ,
2019-03-27 14:38:24 +01:00
"keywords" : [
2024-04-14 18:42:06 +02:00
"web development" ,
"SEO" ,
"OpenGraph" ,
"JSON-LD" ,
"meta tags" ,
"structured data" ,
"TypeScript" ,
"dynamic content" ,
"website setup" ,
"smart delay" ,
"smart promise" ,
"tag management"
2019-03-27 14:38:24 +01:00
] ,
2018-12-28 00:23:13 +01:00
"devDependencies" : {
2026-05-01 18:23:23 +00:00
"@git.zone/tsbuild" : "^4.4.0" ,
"@git.zone/tsbundle" : "^2.10.1" ,
"@git.zone/tstest" : "^3.6.3" ,
"@types/node" : "^25.6.0"
2018-12-28 00:23:13 +01:00
} ,
2020-03-06 15:12:23 +00:00
"dependencies" : {
2026-05-01 18:23:23 +00:00
"@push.rocks/smartpromise" : "^4.2.4" ,
"@tsclass/tsclass" : "^9.5.1"
2020-03-06 15:12:23 +00:00
} ,
2019-07-16 18:54:19 +02:00
"files" : [
2020-03-06 09:57:31 +00:00
"ts/**/*" ,
"ts_web/**/*" ,
"dist/**/*" ,
2020-03-15 19:11:14 +00:00
"dist_*/**/*" ,
"dist_ts/**/*" ,
2020-03-06 09:57:31 +00:00
"dist_ts_web/**/*" ,
"assets/**/*" ,
2019-07-16 18:54:19 +02:00
"cli.js" ,
2026-05-01 18:23:23 +00:00
".smartconfig.json" ,
"license" ,
2019-07-16 18:54:19 +02:00
"npmextra.json" ,
"readme.md"
2020-07-08 11:10:20 +00:00
] ,
"browserslist" : [
"last 1 chrome versions"
2023-05-07 20:24:53 +02:00
] ,
2024-05-29 14:17:45 +02:00
"type" : "module" ,
"homepage" : "https://code.foss.global/push.rocks/websetup" ,
"repository" : {
"type" : "git" ,
"url" : "https://code.foss.global/push.rocks/websetup.git"
}
2026-05-01 18:23:23 +00:00
}