mirror of
https://github.com/goauthentik/authentik
synced 2026-05-13 18:36:56 +02:00
Bumps the goauthentik group with 1 update in the /packages/docusaurus-config directory: @goauthentik/prettier-config. Bumps the goauthentik group with 2 updates in the /packages/eslint-config directory: @goauthentik/prettier-config and @goauthentik/tsconfig. Bumps the goauthentik group with 1 update in the /packages/prettier-config directory: @goauthentik/tsconfig. Bumps the goauthentik group with 2 updates in the /web directory: @goauthentik/prettier-config and @goauthentik/eslint-config. Updates `@goauthentik/prettier-config` from 1.0.4 to 1.0.5 Updates `@goauthentik/prettier-config` from 1.0.1 to 1.0.5 Updates `@goauthentik/tsconfig` from 1.0.1 to 1.0.4 Updates `@goauthentik/tsconfig` from 1.0.1 to 1.0.4 Updates `@goauthentik/prettier-config` from 1.0.4 to 1.0.5 Updates `@goauthentik/eslint-config` from 1.0.4 to 1.0.5 --- updated-dependencies: - dependency-name: "@goauthentik/prettier-config" dependency-version: 1.0.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: goauthentik - dependency-name: "@goauthentik/prettier-config" dependency-version: 1.0.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: goauthentik - dependency-name: "@goauthentik/tsconfig" dependency-version: 1.0.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: goauthentik - dependency-name: "@goauthentik/tsconfig" dependency-version: 1.0.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: goauthentik - dependency-name: "@goauthentik/prettier-config" dependency-version: 1.0.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: goauthentik - dependency-name: "@goauthentik/eslint-config" dependency-version: 1.0.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: goauthentik ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
60 lines
1.5 KiB
JSON
60 lines
1.5 KiB
JSON
{
|
|
"name": "@goauthentik/core",
|
|
"version": "1.0.0",
|
|
"description": "Core functionality for the authentik monorepo",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc -p .",
|
|
"prettier": "prettier --write .",
|
|
"prettier-check": "prettier --check ."
|
|
},
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"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"
|
|
},
|
|
".": {
|
|
"import": "./index.js",
|
|
"types": "./out/index.d.ts"
|
|
}
|
|
},
|
|
"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"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@goauthentik/prettier-config": "^1.0.5",
|
|
"@goauthentik/tsconfig": "^1.0.4",
|
|
"@types/node": "^22.15.21",
|
|
"prettier": "^3.3.3",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.11"
|
|
},
|
|
"types": "./out/index.d.ts",
|
|
"prettier": "@goauthentik/prettier-config"
|
|
}
|