mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 10:07:35 +00:00
This comprehensive migration includes: ### Configuration Updates - Updated root package.json with pnpm workspace configuration - Added packageManager field and pnpm overrides for graphql version - Updated GitHub Actions workflows (.github/workflows/ci.yml, code-size.yml) - Updated Netlify configuration (netlify.toml) - Updated deployment script (deploy.sh) ### Documentation Updates - Updated all README files to use pnpm instead of yarn - Updated installation and build instructions across packages: - packages/webamp/README.md - packages/webamp-modern/README.md - packages/webamp-docs/README.md - packages/ani-cursor/README.md - packages/webamp/demo/readme.md ### Lock File Migration - Removed yarn.lock - Generated pnpm-lock.yaml preserving exact dependency versions - Moved resolutions from skin-database package.json to root pnpm overrides - Created pnpm-workspace.yaml for optimized workspace configuration ### CI/CD Updates - Updated all yarn commands to use pnpm equivalents - Changed yarn workspace commands to pnpm --filter syntax - Updated cache keys to use pnpm-lock.yaml instead of yarn.lock - Added pnpm/action-setup for GitHub Actions ### Validation - Tested builds for webamp, webamp-modern, ani-cursor, webamp-docs - Tested installation and linting for skin-database - Verified dependency resolution consistency - Confirmed all scripts work with pnpm All package versions remain identical to yarn.lock, ensuring no breaking changes.
73 lines
2 KiB
JSON
73 lines
2 KiB
JSON
{
|
|
"name": "skin-database",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@next/third-parties": "^15.3.3",
|
|
"@sentry/node": "^5.27.3",
|
|
"@sentry/tracing": "^5.27.3",
|
|
"algoliasearch": "^4.3.0",
|
|
"async-parallel": "^1.2.3",
|
|
"aws-sdk": "^2.814.0",
|
|
"commander": "^9.0.0",
|
|
"cookie-session": "^1.4.0",
|
|
"dataloader": "^2.0.0",
|
|
"discord.js": "^12.5.3",
|
|
"dotenv": "^16.0.0",
|
|
"fast-xml-parser": "^4.2.2",
|
|
"graphql": "^16.8.1",
|
|
"graphql-http": "^1.22.1",
|
|
"graphql-yoga": "^5.10.10",
|
|
"imagemin": "^7.0.0",
|
|
"imagemin-optipng": "^7.0.0",
|
|
"knex": "^0.21.1",
|
|
"lru-cache": "^6.0.0",
|
|
"mastodon-api": "^1.3.0",
|
|
"md5": "^2.2.1",
|
|
"next": "^15.3.3",
|
|
"node-fetch": "^2.6.7",
|
|
"openai": "^4.68.0",
|
|
"polygon-clipping": "^0.15.3",
|
|
"puppeteer": "^13.3.2",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"react-dropzone": "^11.1.0",
|
|
"react-window": "^1.8.1",
|
|
"redux-observable": "^1.0.0",
|
|
"rxjs": "^6.3.3",
|
|
"sharp": "^0.31.3",
|
|
"spark-md5": "^3.0.1",
|
|
"sqlite3": "^5.1.2",
|
|
"temp": "^0.9.0",
|
|
"ts-node": "^10.5.0",
|
|
"twit": "^2.2.11",
|
|
"winston": "^3.2.1",
|
|
"yargs": "^13.2.4"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint:next": "next lint",
|
|
"tweet": "ts-node --transpile-only ./cli.ts tweet",
|
|
"fetch-metadata": "ts-node --transpile-only ./cli.ts fetch-metadata",
|
|
"bot": "ts-node --transpile-only ./discord-bot/index.js",
|
|
"cli": "ts-node --transpile-only ./cli.ts",
|
|
"sync": "ts-node --transpile-only ./tasks/syncWithArchive.ts",
|
|
"migrate": "knex migrate:latest",
|
|
"grats": "grats",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"prettier": {},
|
|
"devDependencies": {
|
|
"@types/cookie-session": "^2.0.48",
|
|
"@types/lru-cache": "^5.1.0",
|
|
"@types/node-fetch": "^2.5.7",
|
|
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
|
"@typescript-eslint/parser": "^7.1.0",
|
|
"grats": "^0.0.31",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|