AdminLTE/package.json

97 lines
4.6 KiB
JSON
Raw Normal View History

2015-02-01 21:25:09 +00:00
{
2015-04-15 23:07:24 +00:00
"name": "admin-lte",
2015-11-11 19:29:54 +00:00
"description": "Responsive open source admin dashboard and control panel.",
2023-08-06 15:49:16 +00:00
"version": "4.0.0-alpha3",
2015-11-11 19:29:54 +00:00
"license": "MIT",
2020-05-31 12:28:48 +00:00
"author": "Colorlib <https://colorlib.com>",
2018-05-05 21:48:58 +00:00
"main": "dist/js/adminlte.min.js",
2018-02-03 23:45:19 +00:00
"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\"",
2023-06-02 22:41:08 +00:00
"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",
2020-06-01 18:27:25 +00:00
"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",
2023-05-08 06:03:26 +00:00
"docs-format": "js-beautify --file \"dist/pages/**/*.html\"",
2023-09-10 10:59:34 +00:00
"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",
2023-05-08 06:03:26 +00:00
"compile": "npm-run-all docs-compile docs-format assets css js",
"production": "npm-run-all lint compile",
2023-02-20 13:24:04 +00:00
"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\""
2018-02-03 23:45:19 +00:00
},
2015-11-11 19:29:54 +00:00
"keywords": [
"css",
"sass",
"responsive",
"admin",
"template",
"theme",
"framework",
"control-panel",
"dashboard"
],
2018-02-03 23:45:19 +00:00
"homepage": "https://adminlte.io",
2018-03-17 17:07:55 +00:00
"style": "dist/css/adminlte.css",
2021-05-17 03:17:57 +00:00
"sass": "src/scss/adminlte.scss",
2015-04-15 23:07:24 +00:00
"repository": {
"type": "git",
"url": "git://github.com/ColorlibHQ/AdminLTE.git"
2015-04-15 23:07:24 +00:00
},
2015-11-11 19:29:54 +00:00
"bugs": {
"url": "https://github.com/ColorlibHQ/AdminLTE/issues"
2015-11-11 19:29:54 +00:00
},
2015-03-02 23:41:47 +00:00
"devDependencies": {
2023-10-18 09:04:48 +00:00
"@astrojs/check": "^0.2.1",
"@astrojs/mdx": "^1.1.2",
"@rollup/plugin-typescript": "^11.1.5",
chore(deps-dev): bump the eslint group with 4 updates (#5375) 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.7.3 to 6.7.5 - [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.7.5/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 6.7.3 to 6.7.5 - [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.7.5/packages/parser) Updates `eslint` from 8.50.0 to 8.51.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.50.0...v8.51.0) Updates `eslint-plugin-astro` from 0.29.0 to 0.29.1 - [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.0...v0.29.1) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: eslint - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-patch 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-patch dependency-group: eslint ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-12 15:30:18 +00:00
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"astro": "^3.2.0",
"autoprefixer": "^10.4.16",
"bootstrap": "^5.3.2",
2022-02-13 15:12:24 +00:00
"bundlewatch": "^0.3.3",
"clean-css-cli": "^5.6.2",
"concurrently": "^8.2.1",
"cross-env": "^7.0.3",
chore(deps-dev): bump the eslint group with 4 updates (#5375) 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.7.3 to 6.7.5 - [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.7.5/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 6.7.3 to 6.7.5 - [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.7.5/packages/parser) Updates `eslint` from 8.50.0 to 8.51.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.50.0...v8.51.0) Updates `eslint-plugin-astro` from 0.29.0 to 0.29.1 - [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.0...v0.29.1) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: eslint - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-patch 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-patch dependency-group: eslint ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-12 15:30:18 +00:00
"eslint": "^8.51.0",
2023-01-27 13:47:48 +00:00
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^1.0.1",
chore(deps-dev): bump the eslint group with 4 updates (#5375) 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.7.3 to 6.7.5 - [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.7.5/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 6.7.3 to 6.7.5 - [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.7.5/packages/parser) Updates `eslint` from 8.50.0 to 8.51.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.50.0...v8.51.0) Updates `eslint-plugin-astro` from 0.29.0 to 0.29.1 - [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.0...v0.29.1) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: eslint - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-patch 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-patch dependency-group: eslint ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-12 15:30:18 +00:00
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-import": "^2.28.1",
2023-08-06 15:46:57 +00:00
"eslint-plugin-unicorn": "^48.0.1",
"fs-extra": "^11.1.1",
"js-beautify": "^1.14.9",
"lockfile-lint": "^4.12.1",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"rollup": "^4.1.3",
"rtlcss": "^4.1.1",
"sass": "^1.69.3",
"stylelint": "^15.10.3",
"stylelint-config-twbs-bootstrap": "^11.0.1",
"terser": "^5.21.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
2015-02-01 21:25:09 +00:00
}
2015-07-12 13:46:20 +00:00
}