A bunch of changes relating to the codemirror editor component #54

Merged
probablycorey merged 8 commits from editor-fixes into main 2026-01-13 23:00:38 +00:00
Showing only changes of commit 82722ec9e4 - Show all commits

View File

@ -1,11 +1,15 @@
{
"name": "shrimp",
"version": "0.1.0",
"exports": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./editor": "./src/editor/index.ts",
"./editor.css": "./src/editor/editor.css"
},
"private": true,
"type": "module",
"scripts": {
"editor": "bun --hot src/editor/server.tsx",
"editor": "bun --hot src/editor/example/server.tsx",
"repl": "bun bin/repl",
"update-reef": "rm -rf ~/.bun/install/cache/ && rm bun.lock && bun update reefvm",
"cli:install": "ln -s \"$(pwd)/bin/shrimp\" ~/.bun/bin/shrimp",
@ -33,4 +37,4 @@
"singleQuote": true,
"printWidth": 100
}
}
}