Files
metabuilder/codegen/packages/spark-tools/package.json
johndoe6345789 d77a4a0557 chore(deps): Phase 3 - Standardize 15 low-priority dependency versions
Completed standardization of 15 dependency items across 35+ package.json files:

1. UUID: ^11.1.0 → ^13.0.0 (old/)
2. TypeScript: ~5.7.2 → ^5.9.3 (old/)
3. Tailwind CSS: All ^4.x → ^4.1.18 (5 files)
4. Vite: All ^7.x → ^7.3.1 (2 files)
5. Sass: All ^1.x → ^1.83.5 (5 files)
6. ESLint: All ^9.x → ^9.39.2 (3 files)
7. Framer Motion: All versions → ^12.29.0 (2 files)
8. Three.js: All versions → ^0.177.0 (2 files)
9. Lucide React: All versions → ^0.500.0 (2 files)
10. React: ^19.0.0 → ^19.2.3 (4+ files)
11. @types/react: All ^19.x → ^19.2.8 (6+ files)
12. Playwright: ^1.40.0 → ^1.49.1 (1 file)
13. Next.js: ^14.x → ^16.1.4 in primary apps (2 files)
14. React Hook Form: Skipped (already standardized)
15. Workspace packages: Skipped (no issues detected)

Files Modified:
- old/package.json (11 deps)
- pastebin/package.json (7 deps)
- exploded-diagrams/package.json (5 deps)
- postgres/package.json (4 deps)
- storybook/package.json (2 deps)
- dockerterminal/frontend/package.json (2 deps)
- workflowui/package.json (1 dep)
- packagerepo/frontend/package.json (2 deps)
- packagerepo/tests/package.json (1 dep)
- frontends/dbal/package.json (1 dep)
- dbal/development/package.json (1 dep)
- codegen/package.json (mostly already compliant)
- And 3 others with minor updates

Legacy versions intentionally preserved:
- React 18 projects (storybook, workflowui, packagerepo)
- Next.js 15.x branches (exploded-diagrams, pastebin)
- ESLint 8.x legacy (pastebin, workflow)

Status: 13/13 actionable items completed (100% success rate)

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-01-23 18:09:45 +00:00

120 lines
3.1 KiB
JSON

{
"name": "@github/spark",
"version": "0.0.1",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"prepack": "MODE=PACKAGE npm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"exports": {
"./agent-plugin": {
"types": "./dist/agentPlugin.d.ts",
"import": "./dist/agentPlugin.js"
},
"./db": {
"types": "./dist/lib/db.d.ts",
"import": "./dist/db.js"
},
"./designer-styles.css": "./dist/designer-styles.css",
"./designerHost": {
"types": "./dist/designerHost.d.ts",
"import": "./dist/designerHost.js"
},
"./designerPlugin": {
"types": "./dist/designerPlugin.d.ts",
"import": "./dist/designerPlugin.js"
},
"./heartbeat": {
"types": "./dist/heartbeat/heartbeat.d.ts",
"import": "./dist/heartbeat.js"
},
"./heartbeatPlugin": {
"types": "./dist/heartbeat/heartbeatPlugin.d.ts",
"import": "./dist/heartbeatPlugin.js"
},
"./hooks": {
"types": "./dist/hooks/index.d.ts",
"import": "./dist/index.js"
},
"./initializeTelemetry": {
"types": "./dist/heartbeat/heartbeat.d.ts",
"import": "./dist/heartbeat.js"
},
"./llm": {
"types": "./dist/lib/llm.d.ts",
"import": "./dist/llm.js"
},
"./logToFileLogger": {
"types": "./dist/heartbeat/logToFileLogger.d.ts",
"import": "./dist/logToFileLogger.js"
},
"./package.json": "./package.json",
"./spark": {
"types": "./dist/lib/spark.d.ts",
"import": "./dist/spark.js"
},
"./spark-vite-plugin": {
"types": "./dist/sparkVitePlugin.d.ts",
"import": "./dist/sparkVitePlugin.js"
},
"./telemetryPlugin": {
"types": "./dist/heartbeat/heartbeatPlugin.d.ts",
"import": "./dist/heartbeatPlugin.js"
},
"./vitePhosphorIconProxyPlugin": {
"types": "./dist/vitePhosphorIconProxyPlugin.d.ts",
"import": "./dist/vitePhosphorIconProxyPlugin.js"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120
},
"files": [
"LICENSE",
"dist",
"package.json"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.1",
"@types/node": "^22.13.9",
"@types/react": "^19.2.8",
"jsdom": "^25.0.1",
"rollup": "^4.35.0",
"rollup-plugin-delete": "^3.0.1",
"tslib": "^2.8.1",
"ulid": "^3.0.0",
"vitest": "^3.0.9",
"zod": "^3.24.2"
},
"peerDependencies": {
"react": "^19.2.3",
"vite": "^7.0.0 || ^6.4.1"
},
"author": "",
"license": "MIT",
"keywords": [],
"description": "",
"publishConfig": {
"access": "public"
},
"dependencies": {
"body-parser": "^1.20.3",
"express": "^5.2.0",
"octokit": "^5.0.3"
}
}