1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/infrastructure/webpack/package.json
K8s Lens Bot d73ef8fb1b Release 6.5.0-alpha.11
Signed-off-by: K8s Lens Bot <info@k8slens.dev>
2023-05-11 08:23:35 -04:00

58 lines
1.5 KiB
JSON

{
"name": "@k8slens/webpack",
"private": false,
"version": "6.5.0-alpha.6",
"description": "Webpack configurations and scripts for Lens packages.",
"type": "commonjs",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lensapp/lens.git"
},
"main": "dist/index.js",
"author": {
"name": "OpenLens Authors",
"email": "info@k8slens.dev"
},
"license": "MIT",
"homepage": "https://github.com/lensapp/lens",
"scripts": {
"build": "webpack",
"clean": "rimraf dist/",
"test:unit": "jest --coverage --runInBand"
},
"dependencies": {
"@ogre-tools/linkable": "^15.8.1",
"@types/webpack-env": "^1.18.0",
"css-loader": "^6.7.2",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"fs-extra": "^9.0.1",
"mini-css-extract-plugin": "^2.7.3",
"sass": "^1.62.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.3.2",
"ts-loader": "^9.4.1",
"webpack": "^5.81.0",
"webpack-cli": "^4.10.0"
},
"peerDependencies": {
"@ogre-tools/fp": "^15.8.1",
"@ogre-tools/injectable": "^15.8.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@async-fn/jest": "^1.6.4",
"@k8slens/typescript": "^6.5.0-alpha.2",
"@ogre-tools/test-utils": "^15.8.1",
"ts-node": "^10.9.1",
"webpack-node-externals": "^3.0.0"
},
"bin": {
"lens-webpack-build": "bin/webpack-build"
}
}