| 1234567891011121314151617181920212223242526272829303132 |
- {
- "name": "@vendure/admin-ui-plugin",
- "version": "0.5.0",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib/**/*"
- ],
- "license": "MIT",
- "scripts": {
- "build": "rimraf lib && node -r ts-node/register build.ts && yarn compile",
- "watch": "tsc -p ./tsconfig.build.json --watch",
- "lint": "tslint --fix --project ./",
- "compile": "tsc -p ./tsconfig.build.json"
- },
- "publishConfig": {
- "access": "public"
- },
- "devDependencies": {
- "@types/express": "^4.0.39",
- "@types/fs-extra": "^8.0.1",
- "@vendure/common": "^0.5.0",
- "@vendure/core": "^0.5.0",
- "express": "^4.16.4",
- "rimraf": "^3.0.0",
- "typescript": "~3.5.3"
- },
- "dependencies": {
- "@vendure/admin-ui": "^0.5.0",
- "fs-extra": "^8.0.1"
- }
- }
|