2021-02-20 11:51:44 +01:00
|
|
|
{
|
2021-03-05 20:43:22 +01:00
|
|
|
"name": "keycloakify",
|
2023-04-01 23:00:19 +02:00
|
|
|
"version": "7.6.1",
|
2023-03-09 18:30:58 +01:00
|
|
|
"description": "Create Keycloak themes using React",
|
2021-02-20 11:51:44 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-03-24 04:14:41 +01:00
|
|
|
"url": "git://github.com/keycloakify/keycloakify.git"
|
2021-02-20 11:51:44 +01:00
|
|
|
},
|
2023-03-16 22:43:09 +01:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
2021-02-20 11:51:44 +01:00
|
|
|
"scripts": {
|
2023-03-20 05:39:34 +01:00
|
|
|
"prepare": "yarn generate-i18n-messages",
|
2023-03-18 15:49:45 +01:00
|
|
|
"build": "rimraf dist/ && tsc -p src/bin && tsc -p src/tsconfig.json && tsc-alias -p src/tsconfig.json && yarn grant-exec-perms && yarn copy-files dist/",
|
2023-03-18 16:17:33 +01:00
|
|
|
"build:watch": "tsc -p src/tsconfig.json && (concurrently \"tsc -p src/tsconfig.json -w\" \"tsc-alias -p src/tsconfig.json\")",
|
2021-02-28 18:40:57 +01:00
|
|
|
"grant-exec-perms": "node dist/bin/tools/grant-exec-perms.js",
|
2022-07-29 23:10:35 +02:00
|
|
|
"copy-files": "copyfiles -u 1 src/**/*.ftl",
|
2023-03-30 02:45:43 -06:00
|
|
|
"test": "yarn test:types && vitest run",
|
2023-03-30 22:09:27 +00:00
|
|
|
"test:keycloakify-starter": "ts-node scripts/test-keycloakify-starter",
|
|
|
|
"test:types": "tsc -p test/tsconfig.json --noEmit",
|
2021-10-11 21:09:05 +02:00
|
|
|
"_format": "prettier '**/*.{ts,tsx,json,md}'",
|
|
|
|
"format": "yarn _format --write",
|
2023-02-25 18:11:23 +01:00
|
|
|
"format:check": "yarn _format --list-different",
|
2023-03-19 16:58:26 +01:00
|
|
|
"generate-i18n-messages": "ts-node --skipProject scripts/generate-i18n-messages.ts",
|
2023-03-18 02:12:12 +01:00
|
|
|
"link-in-app": "ts-node --skipProject scripts/link-in-app.ts",
|
2023-03-16 13:31:56 +01:00
|
|
|
"link-in-starter": "yarn link-in-app keycloakify-starter",
|
2023-02-25 18:11:23 +01:00
|
|
|
"tsc-watch": "tsc -p src/bin -w & tsc -p src/lib -w "
|
2021-02-20 11:51:44 +01:00
|
|
|
},
|
2021-02-21 21:16:43 +01:00
|
|
|
"bin": {
|
2022-08-22 17:17:35 +07:00
|
|
|
"keycloakify": "dist/bin/keycloakify/index.js",
|
2023-03-20 01:30:16 +01:00
|
|
|
"initialize-email-theme": "dist/bin/initialize-email-theme.js",
|
2023-03-19 15:49:27 +01:00
|
|
|
"download-builtin-keycloak-theme": "dist/bin/download-builtin-keycloak-theme.js",
|
|
|
|
"eject-keycloak-page": "dist/bin/eject-keycloak-page.js"
|
2021-02-21 21:16:43 +01:00
|
|
|
},
|
2021-10-11 21:09:05 +02:00
|
|
|
"lint-staged": {
|
|
|
|
"*.{ts,tsx,json,md}": [
|
|
|
|
"prettier --write"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged -v"
|
|
|
|
}
|
|
|
|
},
|
2021-02-20 10:53:26 +00:00
|
|
|
"author": "u/garronej",
|
2021-02-20 11:51:44 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"files": [
|
|
|
|
"src/",
|
|
|
|
"dist/",
|
2023-03-16 23:03:18 +01:00
|
|
|
"!dist/tsconfig.tsbuildinfo",
|
|
|
|
"!dist/bin/tsconfig.tsbuildinfo"
|
2021-02-20 11:51:44 +01:00
|
|
|
],
|
2021-02-21 21:16:43 +01:00
|
|
|
"keywords": [
|
2021-07-25 19:32:25 +02:00
|
|
|
"bluehats",
|
2021-02-21 21:16:43 +01:00
|
|
|
"keycloak",
|
|
|
|
"react",
|
2021-02-28 18:40:57 +01:00
|
|
|
"theme",
|
|
|
|
"FreeMarker",
|
|
|
|
"ftl",
|
|
|
|
"login",
|
|
|
|
"register"
|
2021-02-21 21:16:43 +01:00
|
|
|
],
|
2023-03-19 15:49:27 +01:00
|
|
|
"homepage": "https://www.keycloakify.dev",
|
2021-10-16 15:17:47 +02:00
|
|
|
"peerDependencies": {
|
2022-06-01 05:38:12 +02:00
|
|
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
2021-10-16 15:17:47 +02:00
|
|
|
},
|
2021-02-20 11:51:44 +01:00
|
|
|
"devDependencies": {
|
2022-10-04 00:35:04 -04:00
|
|
|
"@babel/core": "^7.0.0",
|
2023-03-07 16:43:12 +01:00
|
|
|
"@types/make-fetch-happen": "^10.0.1",
|
2022-09-08 12:06:26 +03:00
|
|
|
"@types/minimist": "^1.2.2",
|
2023-03-19 16:28:38 +01:00
|
|
|
"@types/node": "^18.15.3",
|
2022-06-28 23:36:16 +02:00
|
|
|
"@types/react": "18.0.9",
|
2023-03-30 22:56:58 +02:00
|
|
|
"@types/yauzl": "^2.10.0",
|
2023-03-18 16:17:33 +01:00
|
|
|
"concurrently": "^7.6.0",
|
2021-02-22 00:20:10 +01:00
|
|
|
"copyfiles": "^2.4.1",
|
2021-10-25 21:26:08 +02:00
|
|
|
"husky": "^4.3.8",
|
|
|
|
"lint-staged": "^11.0.0",
|
|
|
|
"prettier": "^2.3.0",
|
2021-02-28 18:40:57 +01:00
|
|
|
"properties-parser": "^0.3.1",
|
2022-06-28 23:36:16 +02:00
|
|
|
"react": "18.1.0",
|
2021-02-27 02:31:47 +01:00
|
|
|
"rimraf": "^3.0.2",
|
2023-03-07 16:43:12 +01:00
|
|
|
"scripting-tools": "^0.19.13",
|
2023-02-25 18:11:23 +01:00
|
|
|
"ts-node": "^10.9.1",
|
2023-03-18 15:49:45 +01:00
|
|
|
"tsc-alias": "^1.8.3",
|
2023-03-30 02:45:43 -06:00
|
|
|
"typescript": "^5.0.1-rc",
|
|
|
|
"vitest": "^0.29.8"
|
2021-02-21 17:38:59 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-20 00:39:40 +02:00
|
|
|
"@octokit/rest": "^18.12.0",
|
2023-04-02 22:47:42 +02:00
|
|
|
"@types/yazl": "^2.4.2",
|
2021-02-23 15:32:37 +01:00
|
|
|
"cheerio": "^1.0.0-rc.5",
|
2022-04-20 00:39:40 +02:00
|
|
|
"cli-select": "^1.1.2",
|
2023-03-17 05:22:47 +00:00
|
|
|
"evt": "^2.4.18",
|
2023-03-07 16:43:12 +01:00
|
|
|
"make-fetch-happen": "^11.0.3",
|
2022-09-01 15:13:24 +02:00
|
|
|
"minimal-polyfills": "^2.2.2",
|
2022-09-08 12:06:26 +03:00
|
|
|
"minimist": "^1.2.6",
|
2021-10-27 10:55:58 +02:00
|
|
|
"path-browserify": "^1.0.1",
|
2021-04-09 03:25:39 +02:00
|
|
|
"react-markdown": "^5.0.3",
|
2022-10-05 02:40:00 -04:00
|
|
|
"rfc4648": "^1.5.2",
|
2023-03-17 05:22:47 +00:00
|
|
|
"tsafe": "^1.6.0",
|
2023-03-30 22:56:58 +02:00
|
|
|
"yauzl": "^2.10.0",
|
2023-04-02 22:47:42 +02:00
|
|
|
"yazl": "^2.5.1",
|
2022-08-16 14:41:06 +07:00
|
|
|
"zod": "^3.17.10"
|
2021-02-20 11:51:44 +01:00
|
|
|
}
|
2021-02-21 23:12:55 +01:00
|
|
|
}
|