stack/apps/skills/package.json
Bilal Godil 0ed2be18c3 Merge remote-tracking branch 'origin/dev' into cl/hexclave-pr3
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.
2026-05-28 19:05:33 -07:00

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"
}
}