mirror of
https://github.com/goauthentik/authentik
synced 2026-05-11 09:26:22 +02:00
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.15.19 to 24.6.0. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 24.6.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
62 lines
1.6 KiB
JSON
62 lines
1.6 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"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@goauthentik/prettier-config": "^3.1.0",
|
|
"@goauthentik/tsconfig": "^1.0.4",
|
|
"@types/node": "^24.6.0",
|
|
"@types/semver": "^7.7.1",
|
|
"prettier": "^3.6.2",
|
|
"semver": "^7.7.2",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=24"
|
|
},
|
|
"types": "./out/index.d.ts",
|
|
"prettier": "@goauthentik/prettier-config"
|
|
}
|