webclient/package.json

46 lines
1.1 KiB
JSON
Raw Normal View History

2020-09-18 15:15:37 +00:00
{
2023-08-27 12:16:51 +02:00
"name": "@consent.software/webclient",
2025-01-14 03:27:51 +01:00
"version": "1.0.19",
2020-09-18 15:15:37 +00:00
"private": false,
"description": "a webclient for using consent.software in your website. Works with vanilla js, angular, react, you name it.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-01 18:02:06 +02:00
"type": "module",
2020-09-18 15:15:37 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2023-08-27 12:16:09 +02:00
"build": "(tsbuild --web --allowimplicitany)",
"bundle": "(tsbundle npm)",
2023-08-27 12:16:09 +02:00
"buildDocs": "tsdoc"
2020-09-18 15:15:37 +00:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.2.0",
"@git.zone/tsbundle": "^2.1.0",
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.5.4",
"@types/node": "^22.10.6"
2020-09-18 15:15:37 +00:00
},
2020-09-18 16:13:57 +00:00
"dependencies": {
"@api.global/typedrequest": "^3.1.10",
2023-08-27 12:16:09 +02:00
"@consent.software/interfaces": "^1.0.11",
"@push.rocks/smarttime": "^4.1.1",
"@push.rocks/webstore": "^2.0.20"
2020-09-18 16:13:57 +00:00
},
2020-09-18 15:15:37 +00:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2023-08-27 12:16:10 +02:00
}