mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-19 21:00:40 +08:00
Brings in #1499 (LLM metadata endpoints) and #1517 (logo SVG fixes). Conflict resolution: - apps/mcp/src/mcp-handler.ts: keep @hexclave/shared import, add dev's new remindersPrompt import (renamed @stackframe/stack-shared -> @hexclave/shared). - package.json: keep @hexclave/backend filter in generate-openapi-docs:watch; take dev's broadened watch globs in generate-setup-prompt-docs:watch. Re-applied the @stackframe/* -> @hexclave/* rename to dev's new code: the 10 new llms*.txt route files and the apps/skills workspace dep now import @hexclave/shared. Lockfile reconciled. Lint 28/28, typecheck 28/28 green.
29 lines
774 B
JSON
29 lines
774 B
JSON
{
|
|
"name": "@hexclave/skills",
|
|
"version": "1.0.0",
|
|
"repository": "https://github.com/hexclave/hexclave",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"clean": "rimraf .next && rimraf node_modules",
|
|
"typecheck": "tsc --noEmit",
|
|
"dev": "next dev --turbopack --port ${NEXT_PUBLIC_HEXCLAVE_PORT_PREFIX:-81}45",
|
|
"build": "next build",
|
|
"start": "next start --port ${NEXT_PUBLIC_HEXCLAVE_PORT_PREFIX:-81}45",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"@hexclave/shared": "workspace:*",
|
|
"next": "16.1.7",
|
|
"react": "19.2.3",
|
|
"react-dom": "19.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "20.17.6",
|
|
"@types/react": "^19.2.3",
|
|
"@types/react-dom": "^19.2.3",
|
|
"rimraf": "^5.0.5",
|
|
"typescript": "5.9.3"
|
|
}
|
|
}
|