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.

99 lines
4.7 KiB

{
10 years ago
"name": "admin-lte",
"description": "Responsive open source admin dashboard and control panel.",
"version": "4.0.0-beta2",
"license": "MIT",
"author": "Colorlib <https://colorlib.com>",
"main": "dist/js/adminlte.min.js",
7 years ago
"scripts": {
"dev": "npm-run-all --parallel watch docs-serve",
"css": "npm-run-all css-compile css-prefix css-rtl css-minify",
"css-compile": "sass --style expanded --load-path=\"node_modules\" --source-map --embed-sources --no-error-css src/scss/:dist/css/",
"css-rtl": "cross-env NODE_ENV=RTL postcss --config src/config/postcss.config.mjs --dir \"dist/css\" --ext \".rtl.css\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*.rtl.css\"",
"css-lint": "stylelint \"src/scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache --rd",
"css-minify": "npm-run-all --aggregate-output --parallel css-minify-*",
"css-minify-main": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*rtl*.css\"",
"css-minify-rtl": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*rtl.css\" \"!dist/css/*.min.css\"",
"css-prefix": "postcss --config src/config/postcss.config.mjs --replace \"dist/css/*.css\" \"!dist/css/*.rtl*.css\" \"!dist/css/*.min.css\"",
"js": "npm-run-all js-compile js-minify",
"js-compile": "rollup --config src/config/rollup.config.js --sourcemap",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
"js-minify": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/adminlte.js.map,includeSources,url=adminlte.min.js.map\" --output dist/js/adminlte.min.js dist/js/adminlte.js",
"bundlewatch": "bundlewatch --config .bundlewatch.config.json",
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"docs-compile": "astro --config src/config/astro.config.mjs build",
"docs-lint": "astro --config src/config/astro.config.mjs check",
"docs-format": "js-beautify --file \"dist/pages/**/*.html\"",
"docs-serve": "astro --config src/config/astro.config.mjs dev --open --port 3000",
"assets": "node src/config/assets.config.mjs",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel js-lint css-lint docs-lint lockfile-lint",
"clean": "rimraf dist",
"compile": "npm-run-all docs-compile docs-format assets css js",
"production": "npm-run-all clean lint compile",
2 years ago
"watch": "concurrently \"npm:watch-*\"",
"watch-css-main": "nodemon --watch src/scss/ --ext scss --exec \"npm-run-all css-lint css-compile\"",
"watch-css-dist": "nodemon --watch dist/css/ --ext css --ignore \"dist/css/*.rtl.*\" --exec \"npm run css-rtl\"",
"watch-js-main": "nodemon --watch src/ts/ --ext ts --exec \"npm-run-all js-lint js-compile\"",
"watch-assets": "nodemon --watch src/assets/ --exec \"npm run assets\""
7 years ago
},
"keywords": [
"css",
"sass",
"responsive",
"admin",
"template",
"theme",
"framework",
"control-panel",
"dashboard"
],
7 years ago
"homepage": "https://adminlte.io",
7 years ago
"style": "dist/css/adminlte.css",
"sass": "src/scss/adminlte.scss",
10 years ago
"repository": {
"type": "git",
"url": "git://github.com/ColorlibHQ/AdminLTE.git"
10 years ago
},
"bugs": {
"url": "https://github.com/ColorlibHQ/AdminLTE/issues"
},
"devDependencies": {
chore(deps-dev): bump the astro group across 1 directory with 3 updates (#5679) Bumps the astro group with 3 updates in the / directory: [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check), [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro). Updates `@astrojs/check` from 0.9.2 to 0.9.3 - [Release notes](https://github.com/withastro/language-tools/releases) - [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md) - [Commits](https://github.com/withastro/language-tools/commits/@astrojs/check@0.9.3/packages/astro-check) Updates `@astrojs/mdx` from 3.1.3 to 3.1.5 - [Release notes](https://github.com/withastro/astro/releases) - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md) - [Commits](https://github.com/withastro/astro/commits/@astrojs/mdx@3.1.5/packages/integrations/mdx) Updates `astro` from 4.13.3 to 4.15.1 - [Release notes](https://github.com/withastro/astro/releases) - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md) - [Commits](https://github.com/withastro/astro/commits/astro@4.15.1/packages/astro) --- updated-dependencies: - dependency-name: "@astrojs/check" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: astro - dependency-name: "@astrojs/mdx" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: astro - dependency-name: astro dependency-type: direct:development update-type: version-update:semver-minor dependency-group: astro ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 months ago
"@astrojs/check": "^0.9.3",
"@astrojs/mdx": "^3.1.5",
"@rollup/plugin-typescript": "^11.1.6",
chore(deps-dev): bump the eslint group with 8 updates (#5543) Bumps the eslint group with 8 updates: | Package | From | To | | --- | --- | --- | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.13.2` | `7.5.0` | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.13.2` | `7.5.0` | | [eslint](https://github.com/eslint/eslint) | `8.55.0` | `8.57.0` | | [eslint-config-xo](https://github.com/xojs/eslint-config-xo) | `0.43.1` | `0.44.0` | | [eslint-config-xo-typescript](https://github.com/xojs/eslint-config-xo-typescript) | `1.0.1` | `4.0.0` | | [eslint-plugin-astro](https://github.com/ota-meshi/eslint-plugin-astro) | `0.30.0` | `0.34.0` | | [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.29.0` | `2.29.1` | | [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) | `49.0.0` | `52.0.0` | Updates `@typescript-eslint/eslint-plugin` from 6.13.2 to 7.5.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.5.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 6.13.2 to 7.5.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.5.0/packages/parser) Updates `eslint` from 8.55.0 to 8.57.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.55.0...v8.57.0) Updates `eslint-config-xo` from 0.43.1 to 0.44.0 - [Release notes](https://github.com/xojs/eslint-config-xo/releases) - [Commits](https://github.com/xojs/eslint-config-xo/compare/v0.43.1...v0.44.0) Updates `eslint-config-xo-typescript` from 1.0.1 to 4.0.0 - [Release notes](https://github.com/xojs/eslint-config-xo-typescript/releases) - [Commits](https://github.com/xojs/eslint-config-xo-typescript/compare/v1.0.1...v4.0.0) Updates `eslint-plugin-astro` from 0.30.0 to 0.34.0 - [Release notes](https://github.com/ota-meshi/eslint-plugin-astro/releases) - [Changelog](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/CHANGELOG.md) - [Commits](https://github.com/ota-meshi/eslint-plugin-astro/compare/v0.30.0...v0.34.0) Updates `eslint-plugin-import` from 2.29.0 to 2.29.1 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.0...v2.29.1) Updates `eslint-plugin-unicorn` from 49.0.0 to 52.0.0 - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v49.0.0...v52.0.0) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint - dependency-name: eslint-config-xo dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint - dependency-name: eslint-config-xo-typescript dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint - dependency-name: eslint-plugin-astro dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint - dependency-name: eslint-plugin-import dependency-type: direct:development update-type: version-update:semver-patch dependency-group: eslint - dependency-name: eslint-plugin-unicorn dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8 months ago
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
chore(deps-dev): bump the astro group across 1 directory with 3 updates (#5679) Bumps the astro group with 3 updates in the / directory: [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check), [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro). Updates `@astrojs/check` from 0.9.2 to 0.9.3 - [Release notes](https://github.com/withastro/language-tools/releases) - [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md) - [Commits](https://github.com/withastro/language-tools/commits/@astrojs/check@0.9.3/packages/astro-check) Updates `@astrojs/mdx` from 3.1.3 to 3.1.5 - [Release notes](https://github.com/withastro/astro/releases) - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md) - [Commits](https://github.com/withastro/astro/commits/@astrojs/mdx@3.1.5/packages/integrations/mdx) Updates `astro` from 4.13.3 to 4.15.1 - [Release notes](https://github.com/withastro/astro/releases) - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md) - [Commits](https://github.com/withastro/astro/commits/astro@4.15.1/packages/astro) --- updated-dependencies: - dependency-name: "@astrojs/check" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: astro - dependency-name: "@astrojs/mdx" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: astro - dependency-name: astro dependency-type: direct:development update-type: version-update:semver-minor dependency-group: astro ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 months ago
"astro": "^4.15.1",
"autoprefixer": "^10.4.20",
"bootstrap": "^5.3.2",
"bundlewatch": "^0.4.0",
"clean-css-cli": "^5.6.3",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
chore(deps-dev): bump the eslint group with 4 updates (#5438) Bumps the eslint group with 4 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [eslint](https://github.com/eslint/eslint) and [eslint-plugin-astro](https://github.com/ota-meshi/eslint-plugin-astro). Updates `@typescript-eslint/eslint-plugin` from 6.10.0 to 6.13.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.13.1/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 6.10.0 to 6.13.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.13.1/packages/parser) Updates `eslint` from 8.53.0 to 8.55.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.53.0...v8.55.0) Updates `eslint-plugin-astro` from 0.29.1 to 0.30.0 - [Release notes](https://github.com/ota-meshi/eslint-plugin-astro/releases) - [Changelog](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/CHANGELOG.md) - [Commits](https://github.com/ota-meshi/eslint-plugin-astro/compare/v0.29.1...v0.30.0) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint - dependency-name: eslint-plugin-astro dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
12 months ago
"eslint": "^8.55.0",
chore(deps-dev): bump the eslint group with 8 updates (#5543) Bumps the eslint group with 8 updates: | Package | From | To | | --- | --- | --- | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.13.2` | `7.5.0` | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.13.2` | `7.5.0` | | [eslint](https://github.com/eslint/eslint) | `8.55.0` | `8.57.0` | | [eslint-config-xo](https://github.com/xojs/eslint-config-xo) | `0.43.1` | `0.44.0` | | [eslint-config-xo-typescript](https://github.com/xojs/eslint-config-xo-typescript) | `1.0.1` | `4.0.0` | | [eslint-plugin-astro](https://github.com/ota-meshi/eslint-plugin-astro) | `0.30.0` | `0.34.0` | | [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.29.0` | `2.29.1` | | [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) | `49.0.0` | `52.0.0` | Updates `@typescript-eslint/eslint-plugin` from 6.13.2 to 7.5.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.5.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 6.13.2 to 7.5.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.5.0/packages/parser) Updates `eslint` from 8.55.0 to 8.57.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.55.0...v8.57.0) Updates `eslint-config-xo` from 0.43.1 to 0.44.0 - [Release notes](https://github.com/xojs/eslint-config-xo/releases) - [Commits](https://github.com/xojs/eslint-config-xo/compare/v0.43.1...v0.44.0) Updates `eslint-config-xo-typescript` from 1.0.1 to 4.0.0 - [Release notes](https://github.com/xojs/eslint-config-xo-typescript/releases) - [Commits](https://github.com/xojs/eslint-config-xo-typescript/compare/v1.0.1...v4.0.0) Updates `eslint-plugin-astro` from 0.30.0 to 0.34.0 - [Release notes](https://github.com/ota-meshi/eslint-plugin-astro/releases) - [Changelog](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/CHANGELOG.md) - [Commits](https://github.com/ota-meshi/eslint-plugin-astro/compare/v0.30.0...v0.34.0) Updates `eslint-plugin-import` from 2.29.0 to 2.29.1 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.0...v2.29.1) Updates `eslint-plugin-unicorn` from 49.0.0 to 52.0.0 - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v49.0.0...v52.0.0) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint - dependency-name: eslint-config-xo dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint - dependency-name: eslint-config-xo-typescript dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint - dependency-name: eslint-plugin-astro dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint - dependency-name: eslint-plugin-import dependency-type: direct:development update-type: version-update:semver-patch dependency-group: eslint - dependency-name: eslint-plugin-unicorn dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8 months ago
"eslint-config-xo": "^0.44.0",
"eslint-config-xo-typescript": "^4.0.0",
"eslint-plugin-astro": "^0.34.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^52.0.0",
"fs-extra": "^11.1.1",
"js-beautify": "^1.15.1",
"lockfile-lint": "^4.14.0",
"nodemon": "^3.1.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.43",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"rimraf": "^6.0.1",
"rollup": "^4.21.0",
"rtlcss": "^4.3.0",
"sass": "^1.77.4",
"stylelint": "^16.8.2",
"stylelint-config-twbs-bootstrap": "^14.2.0",
"terser": "^5.31.6",
"tslib": "^2.7.0",
"typescript": "^5.5.4"
}
10 years ago
}