| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "@vendure/asset-server-plugin",
- "version": "0.10.1",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib/**/*"
- ],
- "license": "MIT",
- "scripts": {
- "watch": "tsc -p ./tsconfig.build.json --watch",
- "build": "rimraf lib && tsc -p ./tsconfig.build.json && node build.js",
- "lint": "tslint --fix --project ./",
- "test": "jest --config ./jest.config.js",
- "e2e": "jest --config ../../e2e-common/jest-config.js --runInBand --package=asset-server-plugin"
- },
- "publishConfig": {
- "access": "public"
- },
- "devDependencies": {
- "@types/express": "^4.0.39",
- "@types/fs-extra": "^8.0.1",
- "@types/node-fetch": "^2.5.4",
- "@types/sharp": "^0.22.2",
- "@vendure/common": "^0.10.1",
- "@vendure/core": "^0.10.1",
- "express": "^4.16.4",
- "node-fetch": "^2.6.0",
- "rimraf": "^3.0.0",
- "typescript": "~3.5.3"
- },
- "dependencies": {
- "fs-extra": "^8.0.1",
- "sharp": "^0.23.3"
- }
- }
|