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.",
|
2024-09-01 15:22:46 +00:00
|
|
|
"version": "4.0.0-beta2",
|
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": {
|
2023-02-19 16:10:29 +00:00
|
|
|
"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",
|
2023-02-19 16:10:29 +00:00
|
|
|
"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",
|
2021-11-04 10:19:49 +00:00
|
|
|
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
|
2023-02-19 16:10:29 +00:00
|
|
|
"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",
|
2023-02-19 16:10:29 +00:00
|
|
|
"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",
|
2024-09-01 18:26:36 +00:00
|
|
|
"clean": "rimraf dist",
|
2023-05-08 06:03:26 +00:00
|
|
|
"compile": "npm-run-all docs-compile docs-format assets css js",
|
2024-09-01 18:26:36 +00:00
|
|
|
"production": "npm-run-all clean lint compile",
|
2023-02-20 13:24:04 +00:00
|
|
|
"watch": "concurrently \"npm:watch-*\"",
|
2023-02-19 16:10:29 +00:00
|
|
|
"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",
|
2019-06-06 12:32:53 +00:00
|
|
|
"url": "git://github.com/ColorlibHQ/AdminLTE.git"
|
2015-04-15 23:07:24 +00:00
|
|
|
},
|
2015-11-11 19:29:54 +00:00
|
|
|
"bugs": {
|
2019-06-06 12:32:53 +00:00
|
|
|
"url": "https://github.com/ColorlibHQ/AdminLTE/issues"
|
2015-11-11 19:29:54 +00:00
|
|
|
},
|
2015-03-02 23:41:47 +00:00
|
|
|
"devDependencies": {
|
2024-09-01 15:10:47 +00:00
|
|
|
"@astrojs/check": "^0.9.3",
|
|
|
|
"@astrojs/mdx": "^3.1.5",
|
2024-04-09 06:52:59 +00:00
|
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
2024-04-09 06:47:49 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.5.0",
|
|
|
|
"@typescript-eslint/parser": "^7.5.0",
|
2024-09-01 15:10:47 +00:00
|
|
|
"astro": "^4.15.1",
|
2024-09-01 10:40:43 +00:00
|
|
|
"autoprefixer": "^10.4.20",
|
2023-09-18 18:12:05 +00:00
|
|
|
"bootstrap": "^5.3.2",
|
2024-08-24 15:06:56 +00:00
|
|
|
"bundlewatch": "^0.4.0",
|
2023-12-17 10:03:24 +00:00
|
|
|
"clean-css-cli": "^5.6.3",
|
2023-11-01 09:35:54 +00:00
|
|
|
"concurrently": "^8.2.2",
|
2023-02-19 16:10:29 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2023-12-07 06:20:14 +00:00
|
|
|
"eslint": "^8.55.0",
|
2024-04-09 06:47:49 +00:00
|
|
|
"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",
|
2023-03-21 13:00:39 +00:00
|
|
|
"fs-extra": "^11.1.1",
|
2024-05-18 10:50:37 +00:00
|
|
|
"js-beautify": "^1.15.1",
|
2024-08-24 15:04:00 +00:00
|
|
|
"lockfile-lint": "^4.14.0",
|
2024-06-03 03:23:19 +00:00
|
|
|
"nodemon": "^3.1.2",
|
2023-02-19 16:10:29 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2024-08-15 09:03:11 +00:00
|
|
|
"postcss": "^8.4.41",
|
2023-12-17 11:10:04 +00:00
|
|
|
"postcss-cli": "^11.0.0",
|
2024-08-24 09:47:52 +00:00
|
|
|
"prettier": "^3.3.3",
|
|
|
|
"prettier-plugin-astro": "^0.14.1",
|
2024-09-01 18:26:36 +00:00
|
|
|
"rimraf": "^6.0.1",
|
2024-08-24 15:03:36 +00:00
|
|
|
"rollup": "^4.21.0",
|
2024-09-02 06:38:49 +00:00
|
|
|
"rtlcss": "^4.3.0",
|
2024-06-03 03:23:44 +00:00
|
|
|
"sass": "^1.77.4",
|
2024-08-24 09:43:21 +00:00
|
|
|
"stylelint": "^16.8.2",
|
|
|
|
"stylelint-config-twbs-bootstrap": "^14.2.0",
|
2024-09-01 15:11:11 +00:00
|
|
|
"terser": "^5.31.6",
|
2024-09-01 10:40:28 +00:00
|
|
|
"tslib": "^2.7.0",
|
2024-08-24 15:31:47 +00:00
|
|
|
"typescript": "^5.5.4"
|
2015-02-01 21:25:09 +00:00
|
|
|
}
|
2015-07-12 13:46:20 +00:00
|
|
|
}
|