michangarrito/apps/backend/node_modules/vlq/package.json
rckrdmrd 48dea7a5d0 feat: Initial commit - michangarrito
Marketplace móvil para negocios locales mexicanos.

Estructura inicial:
- apps/backend (NestJS API)
- apps/frontend (React Web)
- apps/mobile (Expo/React Native)
- apps/mcp-server (Claude MCP Server)
- apps/whatsapp-service (WhatsApp Business API)
- database/ (PostgreSQL DDL)
- docs/ (Documentación)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:41:02 -06:00

31 lines
724 B
JSON

{
"name": "vlq",
"description": "Generate, and decode, base64 VLQ mappings for source maps and other uses",
"author": "Rich Harris",
"repository": "https://github.com/Rich-Harris/vlq",
"license": "MIT",
"version": "1.0.1",
"main": "dist/vlq.js",
"module": "dist/vlq.es.js",
"types": "dist/types/vlq.d.ts",
"files": [
"README.md",
"LICENSE",
"dist/*.js",
"dist/**/*.d.ts"
],
"devDependencies": {
"eslint": "^6.0.1",
"rollup": "^1.16.4",
"rollup-plugin-typescript": "^1.0.1",
"typescript": "^3.5.2"
},
"scripts": {
"build": "rollup -c && tsc",
"lint": "eslint src",
"test": "node test",
"pretest": "npm run build",
"prepublish": "npm test"
}
}