Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/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>
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "@nuxt/opencollective",
|
|
"version": "0.4.1",
|
|
"repository": "nuxt-contrib/opencollective",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"bin": "bin/opencollective.js",
|
|
"files": [
|
|
"bin",
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "bili -t node --format cjs src/index.js",
|
|
"lint": "eslint src test",
|
|
"lint:engines": "installed-check -d",
|
|
"prepublish": "pnpm build",
|
|
"release": "standard-version && git push --follow-tags && npm publish",
|
|
"test": "pnpm lint && pnpm test:coverage",
|
|
"test:ava": "nyc ava --verbose",
|
|
"test:coverage": "nyc --reporter=lcov --reporter=html ava"
|
|
},
|
|
"ava": {
|
|
"require": [
|
|
"jiti/register"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"consola": "^3.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17.8.1",
|
|
"@commitlint/config-conventional": "^17.8.1",
|
|
"@nuxtjs/eslint-config": "^12.0.0",
|
|
"ava": "^5.3.1",
|
|
"bili": "latest",
|
|
"eslint": "^8.57.1",
|
|
"fetch-mock": "^9.11.0",
|
|
"installed-check": "^9.3.0",
|
|
"jiti": "^1.21.6",
|
|
"node-fetch": "npm:node-fetch-native@^1.6.4",
|
|
"nyc": "latest",
|
|
"sinon": "^17.0.1",
|
|
"standard-version": "^9.5.0"
|
|
},
|
|
"engines": {
|
|
"node": "^14.18.0 || >=16.10.0",
|
|
"npm": ">=5.10.0"
|
|
},
|
|
"packageManager": "pnpm@9.15.0"
|
|
}
|