| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "@vendure/ui-devkit",
- "version": "2.0.0-next.25",
- "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.js --configProduction",
- "build:compiler": "rimraf ./compiler && tsc -p tsconfig.compiler.json",
- "build": "yarn build:client && yarn build:compiler",
- "watch": "rimraf ./lib && rollup -c rollup.config.js -w",
- "lint": "tslint --fix --project ./"
- },
- "bugs": {
- "url": "https://github.com/vendure-ecommerce/vendure/issues"
- },
- "dependencies": {
- "@angular-devkit/build-angular": "~13.2.4",
- "@angular/cli": "13.2.4",
- "@angular/compiler": "13.2.3",
- "@angular/compiler-cli": "13.2.3",
- "@vendure/admin-ui": "^2.0.0-next.25",
- "@vendure/common": "^2.0.0-next.25",
- "chalk": "^4.1.0",
- "chokidar": "^3.5.1",
- "fs-extra": "^10.0.0",
- "glob": "^7.1.6",
- "rxjs": "^7.5.4"
- },
- "devDependencies": {
- "@rollup/plugin-node-resolve": "^11.2.0",
- "@types/fs-extra": "^9.0.8",
- "@types/glob": "^7.1.3",
- "@vendure/core": "^2.0.0-next.25",
- "rimraf": "^3.0.2",
- "rollup": "^2.40.0",
- "rollup-plugin-terser": "^7.0.2",
- "rollup-plugin-typescript2": "^0.30.0",
- "tslib": "^2.1.0",
- "typescript": "4.5.5"
- }
- }
|