| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "name": "@vendure/cli",
- "version": "3.3.1",
- "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": "GPL-3.0-or-later",
- "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": "3.3.1",
- "change-case": "^4.1.2",
- "commander": "^11.0.0",
- "dotenv": "^16.4.5",
- "fs-extra": "^11.2.0",
- "picocolors": "^1.0.0",
- "ts-morph": "^21.0.1",
- "ts-node": "^10.9.2",
- "tsconfig-paths": "^4.2.0"
- },
- "devDependencies": {
- "@vendure/core": "3.3.1",
- "typescript": "5.8.2"
- }
- }
|