mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
80e7dd0c62
* web: bump @goauthentik/tsconfig Bumps the goauthentik group with 1 update in the /web/packages/core directory: [@goauthentik/tsconfig](https://github.com/goauthentik/authentik/tree/HEAD/packages/tsconfig). Updates `@goauthentik/tsconfig` from 1.0.9 to 2.0.0 - [Release notes](https://github.com/goauthentik/authentik/releases) - [Commits](https://github.com/goauthentik/authentik/commits/HEAD/packages/tsconfig) --- updated-dependencies: - dependency-name: "@goauthentik/tsconfig" dependency-version: 2.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: goauthentik ... Signed-off-by: dependabot[bot] <support@github.com> * sigh Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "@goauthentik/core",
|
|
"version": "1.0.0",
|
|
"description": "Core functionality for the authentik monorepo",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc -p ."
|
|
},
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"types": "./out/index.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
"./*/browser": {
|
|
"types": "./out/*/browser.d.ts",
|
|
"import": "./*/browser.js"
|
|
},
|
|
"./*/node": {
|
|
"types": "./out/*/node.d.ts",
|
|
"import": "./*/node.js"
|
|
},
|
|
"./*": {
|
|
"types": "./out/*/index.d.ts",
|
|
"import": "./*/index.js"
|
|
},
|
|
".": {
|
|
"types": "./out/index.d.ts",
|
|
"import": "./index.js"
|
|
}
|
|
},
|
|
"imports": {
|
|
"#*/browser": {
|
|
"types": "./out/*/browser.d.ts",
|
|
"import": "./*/browser.js"
|
|
},
|
|
"#*/node": {
|
|
"types": "./out/*/node.d.ts",
|
|
"import": "./*/node.js"
|
|
},
|
|
"#*": {
|
|
"types": "./out/*/index.d.ts",
|
|
"import": "./*/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@goauthentik/tsconfig": "^2.0.0",
|
|
"@types/node": "^25.7.0",
|
|
"@types/semver": "^7.7.1",
|
|
"semver": "^7.7.4",
|
|
"typescript": "^6.0.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=24",
|
|
"npm": ">=11.14.1"
|
|
}
|
|
}
|