| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "@vendure/cli",
- "version": "2.2.0",
- "description": "A modern, headless ecommerce framework",
- "repository": {
- "type": "git",
- "url": "https://github.com/vendure-ecommerce/vendure/"
- },
- "keywords": [
- "vendure",
- "ecommerce",
- "headless",
- "graphql",
- "typescript"
- ],
- "homepage": "https://www.vendure.io/",
- "funding": "https://github.com/sponsors/michaelbromley",
- "private": false,
- "license": "MIT",
- "type": "commonjs",
- "scripts": {
- "build": "rimraf dist && tsc -p ./tsconfig.cli.json && ts-node ./build.ts",
- "watch": "tsc -p ./tsconfig.cli.json --watch",
- "ci": "npm run build",
- "test": "vitest --config vitest.config.mts --run"
- },
- "publishConfig": {
- "access": "public"
- },
- "bin": {
- "vendure": "dist/cli.js"
- },
- "files": [
- "dist/**/*"
- ],
- "dependencies": {
- "@clack/prompts": "^0.7.0",
- "@vendure/common": "^2.2.0",
- "change-case": "^4.1.2",
- "commander": "^11.0.0",
- "fs-extra": "^11.2.0",
- "picocolors": "^1.0.0",
- "ts-morph": "^21.0.1",
- "ts-node": "^10.9.2"
- },
- "devDependencies": {
- "@vendure/core": "^2.2.0",
- "typescript": "5.3.3"
- }
- }
|