Files
webjwt/package.json
T

60 lines
1.2 KiB
JSON
Raw Normal View History

2022-12-22 17:12:15 +01:00
{
2023-08-21 08:26:47 +02:00
"name": "@push.rocks/webjwt",
2023-08-21 12:38:33 +02:00
"version": "1.0.9",
2022-12-22 17:12:15 +01:00
"private": false,
2024-04-14 18:40:21 +02:00
"description": "A package for handling JWTs in web environments.",
"exports": {
".": "./dist_ts/index.js"
},
2022-12-22 17:12:15 +01:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2022-12-22 17:12:15 +01:00
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
2022-12-22 17:12:15 +01:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2022-12-22 17:12:15 +01:00
},
2022-12-22 17:21:43 +01:00
"dependencies": {
"@push.rocks/smartstring": "^4.1.1"
2022-12-22 17:21:43 +01:00
},
2022-12-22 17:12:15 +01:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2022-12-22 17:12:15 +01:00
"npmextra.json",
"readme.md"
2024-04-14 18:40:21 +02:00
],
"keywords": [
"jwt",
"web",
"authentication",
"security",
"token parsing",
"JSON Web Tokens",
"smartstring",
"typescript"
2024-05-29 14:17:37 +02:00
],
"homepage": "https://code.foss.global/push.rocks/webjwt",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/webjwt.git"
}
}