| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "@vendure/ui-devkit",
- "version": "2.2.0-next.3",
- "description": "A library for authoring Vendure Admin UI extensions",
- "keywords": [
- "vendure",
- "javascript",
- "extensions"
- ],
- "author": "Michael Bromley <michael@michaelbromley.co.uk>",
- "homepage": "https://www.vendure.io/",
- "license": "MIT",
- "files": [
- "client",
- "compiler",
- "scaffold"
- ],
- "funding": "https://github.com/sponsors/michaelbromley",
- "publishConfig": {
- "access": "public"
- },
- "main": "client/index.js",
- "types": "client/index.d.ts",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/vendure-ecommerce/vendure.git"
- },
- "scripts": {
- "build:client": "rimraf ./client && rollup -c rollup.config.mjs --configProduction",
- "build:compiler": "rimraf ./compiler && tsc -p tsconfig.compiler.json",
- "build": "yarn build:client && yarn build:compiler",
- "watch": "rimraf ./lib && rollup -c rollup.config.mjs -w",
- "lint": "eslint --fix ."
- },
- "bugs": {
- "url": "https://github.com/vendure-ecommerce/vendure/issues"
- },
- "dependencies": {
- "@angular-devkit/build-angular": "^16.2.0",
- "@angular/cli": "^16.2.0",
- "@angular/compiler": "^16.2.2",
- "@angular/compiler-cli": "^16.2.2",
- "@vendure/admin-ui": "2.2.0-next.3",
- "@vendure/common": "2.2.0-next.3",
- "chalk": "^4.1.0",
- "chokidar": "^3.5.3",
- "fs-extra": "^11.1.1",
- "glob": "^9.2.1",
- "rxjs": "^7.8.1"
- },
- "devDependencies": {
- "@rollup/plugin-node-resolve": "^15.2.1",
- "@types/fs-extra": "^11.0.1",
- "@vendure/core": "2.2.0-next.3",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "rimraf": "^3.0.2",
- "rollup": "^3.28.1",
- "rollup-plugin-terser": "^7.0.2",
- "rollup-plugin-typescript2": "^0.35.0",
- "tslib": "^2.6.2",
- "typescript": "4.9.5"
- }
- }
|