package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@vendure/ui-devkit",
  3. "version": "2.0.0-next.22",
  4. "description": "A library for authoring Vendure Admin UI extensions",
  5. "keywords": [
  6. "vendure",
  7. "javascript",
  8. "extensions"
  9. ],
  10. "author": "Michael Bromley <michael@michaelbromley.co.uk>",
  11. "homepage": "https://www.vendure.io/",
  12. "license": "MIT",
  13. "files": [
  14. "client",
  15. "compiler",
  16. "scaffold"
  17. ],
  18. "funding": "https://github.com/sponsors/michaelbromley",
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "main": "client/index.js",
  23. "types": "client/index.d.ts",
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/vendure-ecommerce/vendure.git"
  27. },
  28. "scripts": {
  29. "build:client": "rimraf ./client && rollup -c rollup.config.js --configProduction",
  30. "build:compiler": "rimraf ./compiler && tsc -p tsconfig.compiler.json",
  31. "build": "yarn build:client && yarn build:compiler",
  32. "watch": "rimraf ./lib && rollup -c rollup.config.js -w",
  33. "lint": "tslint --fix --project ./"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/vendure-ecommerce/vendure/issues"
  37. },
  38. "dependencies": {
  39. "@angular-devkit/build-angular": "~13.2.4",
  40. "@angular/cli": "13.2.4",
  41. "@angular/compiler": "13.2.3",
  42. "@angular/compiler-cli": "13.2.3",
  43. "@vendure/admin-ui": "^2.0.0-next.22",
  44. "@vendure/common": "^2.0.0-next.22",
  45. "chalk": "^4.1.0",
  46. "chokidar": "^3.5.1",
  47. "fs-extra": "^10.0.0",
  48. "glob": "^7.1.6",
  49. "rxjs": "^7.5.4"
  50. },
  51. "devDependencies": {
  52. "@rollup/plugin-node-resolve": "^11.2.0",
  53. "@types/fs-extra": "^9.0.8",
  54. "@types/glob": "^7.1.3",
  55. "@vendure/core": "^2.0.0-next.22",
  56. "rimraf": "^3.0.2",
  57. "rollup": "^2.40.0",
  58. "rollup-plugin-terser": "^7.0.2",
  59. "rollup-plugin-typescript2": "^0.30.0",
  60. "tslib": "^2.1.0",
  61. "typescript": "4.5.5"
  62. }
  63. }