webjwt/package.json
2024-05-29 14:17:37 +02:00

58 lines
1.3 KiB
JSON

{
"name": "@push.rocks/webjwt",
"version": "1.0.9",
"private": false,
"description": "A package for handling JWTs in web environments.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsdoc": "^1.1.10",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.5.1"
},
"dependencies": {
"@push.rocks/smartstring": "^4.0.8"
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"keywords": [
"jwt",
"web",
"authentication",
"security",
"token parsing",
"JSON Web Tokens",
"smartstring",
"typescript"
],
"homepage": "https://code.foss.global/push.rocks/webjwt",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/webjwt.git"
}
}