Files
websetup/package.json

61 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",
2023-05-08 15:22:28 +02:00
"version": "3.0.19",
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.",
2020-03-15 19:11:14 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2018-12-28 00:23:13 +01:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2023-05-07 20:24:53 +02:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
"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": {
2023-05-07 20:24:53 +02:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsbundle": "^2.0.7",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4"
2018-12-28 00:23:13 +01:00
},
2020-03-06 15:12:23 +00:00
"dependencies": {
2023-05-07 20:24:53 +02:00
"@pushrocks/smartdelay": "^3.0.1",
"@pushrocks/smartpromise": "^4.0.2",
2023-05-08 15:22:27 +02:00
"@tsclass/tsclass": "^4.0.41"
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",
"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"
}
2024-03-30 21:49:21 +01:00
}