websetup/package.json

61 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2018-12-27 23:23:13 +00:00
{
2024-03-30 20:49:21 +00:00
"name": "@push.rocks/websetup",
2023-05-08 13:22:28 +00:00
"version": "3.0.19",
2018-12-27 23:23:13 +00:00
"private": false,
2024-04-14 16:42:06 +00: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-27 23:23:13 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2023-05-07 18:24:53 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
"buildDocs": "tsdoc"
2018-12-27 23:23:13 +00:00
},
2019-03-27 13:38:24 +00:00
"keywords": [
2024-04-14 16:42:06 +00: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 13:38:24 +00:00
],
2018-12-27 23:23:13 +00:00
"devDependencies": {
2023-05-07 18:24:53 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsbundle": "^2.0.7",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4"
2018-12-27 23:23:13 +00:00
},
2020-03-06 15:12:23 +00:00
"dependencies": {
2023-05-07 18:24:53 +00:00
"@pushrocks/smartdelay": "^3.0.1",
"@pushrocks/smartpromise": "^4.0.2",
2023-05-08 13:22:27 +00:00
"@tsclass/tsclass": "^4.0.41"
2020-03-06 15:12:23 +00:00
},
2019-07-16 16:54:19 +00: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 16:54:19 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-07-08 11:10:20 +00:00
],
"browserslist": [
"last 1 chrome versions"
2023-05-07 18:24:53 +00:00
],
2024-05-29 12:17:45 +00: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 20:49:21 +00:00
}