mirror of
https://github.com/goauthentik/authentik
synced 2026-05-13 02:16:30 +02:00
* web: Update deps. Avoid devDependencies. * web: Replace deprecated package with our own. * web: Clean up dev deps. * web: Clean up root packages. * web: Dedupe plugin.
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"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@goauthentik/prettier-config": "^3.1.0",
|
|
"@goauthentik/tsconfig": "^1.0.4",
|
|
"@types/node": "^24.1.0",
|
|
"prettier": "^3.6.2",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=24"
|
|
},
|
|
"types": "./out/index.d.ts",
|
|
"prettier": "@goauthentik/prettier-config"
|
|
}
|