| 123456789101112131415161718192021222324252627282930313233 |
- {
- "name": "@vendure/common",
- "version": "3.4.1",
- "main": "index.js",
- "license": "GPL-3.0-or-later",
- "repository": {
- "type": "git",
- "url": "https://github.com/vendure-ecommerce/vendure"
- },
- "scripts": {
- "watch": "tsc -p ./tsconfig.build.json -w",
- "build": "rimraf lib && tsc -p ./tsconfig.build.json",
- "lint": "eslint --fix .",
- "test": "vitest --run",
- "ci": "npm run build"
- },
- "homepage": "https://www.vendure.io",
- "funding": "https://github.com/sponsors/michaelbromley",
- "publishConfig": {
- "access": "public"
- },
- "files": [
- "lib/**/*"
- ],
- "exports": {
- ".": "./lib/index.js",
- "./lib/*": "./lib/*.js"
- },
- "devDependencies": {
- "rimraf": "^5.0.5",
- "typescript": "5.8.2"
- }
- }
|