94a181ce2a
refs https://github.com/TryGhost/Product/issues/4123 --- <!-- Leave the line below if you'd like GitHub Copilot to generate a summary from your commit --> <!-- copilot:summary --> ### <samp>🤖 Generated by Copilot at a420f0b</samp> This pull request moves most of the API-related types and functions from the `admin-x-settings` package to the `admin-x-framework` package, which is a new library of common utilities and hooks for the admin-x apps. It also adds some configuration files, such as `.eslintrc.cjs` and `.gitignore`, to the `admin-x-framework` package. Additionally, it exports the `FetchKoenigLexical` type from the `admin-x-design-system` package, which is used by the `HtmlEditor` component.
81 lines
2.0 KiB
JSON
81 lines
2.0 KiB
JSON
{
|
|
"name": "@tryghost/admin-x-framework",
|
|
"type": "module",
|
|
"version": "0.0.0",
|
|
"repository": "https://github.com/TryGhost/Ghost/tree/main/apps/admin-x-framework",
|
|
"author": "Ghost Foundation",
|
|
"private": true,
|
|
"exports": {
|
|
".": {
|
|
"import": "./es/index.js",
|
|
"types": "./types/index.d.ts"
|
|
},
|
|
"./errors": {
|
|
"import": "./es/errors.js",
|
|
"types": "./types/errors.d.ts"
|
|
},
|
|
"./helpers": {
|
|
"import": "./es/helpers.js",
|
|
"types": "./types/helpers.d.ts"
|
|
},
|
|
"./hooks": {
|
|
"import": "./es/hooks.js",
|
|
"types": "./types/hooks.d.ts"
|
|
},
|
|
"./routing": {
|
|
"import": "./es/routing.js",
|
|
"types": "./types/routing.d.ts"
|
|
},
|
|
"./api/*": {
|
|
"import": "./es/api/*.js",
|
|
"types": "./types/api/*.d.ts"
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "vite build && tsc -p tsconfig.declaration.json",
|
|
"prepare": "yarn build",
|
|
"test": "yarn test:types",
|
|
"test:types": "tsc --noEmit",
|
|
"lint:code": "eslint --ext .js,.ts,.cjs,.tsx src/ --cache",
|
|
"lint": "yarn lint:code && (yarn lint:test || echo \"TODO ADD TESTS TO LINT\")",
|
|
"lint:test": "eslint -c test/.eslintrc.cjs --ext .js,.ts,.cjs,.tsx test/ --cache"
|
|
},
|
|
"files": [
|
|
"es",
|
|
"types"
|
|
],
|
|
"devDependencies": {
|
|
"@vitejs/plugin-react": "4.1.1",
|
|
"c8": "8.0.1",
|
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
"eslint-plugin-react-refresh": "0.4.3",
|
|
"mocha": "10.2.0",
|
|
"sinon": "17.0.0",
|
|
"ts-node": "10.9.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"typescript": "5.2.2",
|
|
"vite": "4.5.0"
|
|
},
|
|
"dependencies": {
|
|
"@sentry/react": "7.78.0",
|
|
"@tanstack/react-query": "4.36.1",
|
|
"@tryghost/admin-x-design-system": "0.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"nx": {
|
|
"targets": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"build",
|
|
{"projects": ["@tryghost/admin-x-design-system"], "target": "build"}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|