You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.3 KiB
81 lines
2.3 KiB
{
|
|
"name": "@tryghost/admin-x-settings",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/TryGhost/Ghost/tree/main/packages/admin-x-settings"
|
|
},
|
|
"author": "Ghost Foundation",
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"dist/"
|
|
],
|
|
"main": "./dist/admin-x-settings.umd.cjs",
|
|
"module": "./dist/admin-x-settings.js",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/admin-x-settings.js",
|
|
"require": "./dist/admin-x-settings.umd.cjs"
|
|
}
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite build --watch",
|
|
"dev:start": "vite",
|
|
"build": "tsc && vite build",
|
|
"lint": "yarn run lint:js",
|
|
"lint:js": "eslint --ext .js,.ts,.cjs,.tsx --cache src test",
|
|
"test:unit": "vitest run --config vitest.config.ts",
|
|
"test:acceptance": "NODE_OPTIONS='--experimental-specifier-resolution=node --no-warnings' playwright test",
|
|
"test:acceptance:slowmo": "TIMEOUT=100000 PLAYWRIGHT_SLOWMO=100 yarn test:acceptance --headed",
|
|
"test:acceptance:full": "ALL_BROWSERS=1 yarn test:acceptance",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/lang-html": "6.4.10",
|
|
"@tryghost/color-utils": "0.2.10",
|
|
"@tryghost/kg-unsplash-selector": "0.3.6",
|
|
"@tryghost/limit-service": "1.4.1",
|
|
"@tryghost/nql": "0.12.7",
|
|
"@tryghost/timezone-data": "0.4.12",
|
|
"react": "18.3.1",
|
|
"react-dom": "18.3.1",
|
|
"validator": "13.12.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.54.1",
|
|
"@testing-library/react": "14.3.1",
|
|
"@tryghost/admin-x-design-system": "0.0.0",
|
|
"@tryghost/admin-x-framework": "0.0.0",
|
|
"@tryghost/shade": "0.0.0",
|
|
"@tryghost/custom-fonts": "1.0.2",
|
|
"@types/react": "18.3.24",
|
|
"@types/react-dom": "18.3.7",
|
|
"@types/validator": "13.15.3",
|
|
"@vitejs/plugin-react": "4.7.0",
|
|
"eslint-plugin-react-hooks": "4.6.2",
|
|
"eslint-plugin-react-refresh": "0.4.20",
|
|
"eslint-plugin-tailwindcss": "3.18.2",
|
|
"stylelint": "15.11.0",
|
|
"vite": "5.4.20",
|
|
"vite-plugin-css-injected-by-js": "3.5.2",
|
|
"vite-plugin-svgr": "3.3.0",
|
|
"vitest": "1.6.1"
|
|
},
|
|
"nx": {
|
|
"targets": {
|
|
"dev": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"test:acceptance": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
} |