Files
websetup/package.json
T

66 lines
1.5 KiB
JSON
Raw Permalink Normal View History

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.",
"exports": {
".": "./dist_ts/index.js"
},
2020-03-15 19:11:14 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2018-12-28 00:23:13 +01:00
"license": "MIT",
"scripts": {
"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": {
"@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": {
"@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",
".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"
}
}