aliak
aliak
DDeno
Created by aliak on 3/31/2025 in #help
How do i correctly create local package/package.json - that can be used by locally running deno app?
The tl;dr is that I have a sveltekit app and a deno app, and they both share code. Everything seems to work on the CLI level, but I cannot get it to work on the LSP level (vscode) I think? I can't tell if it's my lack of understanding of how deno expects imported npm packages that are local - or if that's even possible, or something else. I have put up a mock repo to show what I am trying to do, and I also creted an issue in github that shows some fix attempts that lead to extremem performance degredation from the deno lang server (i think at least) I'm trying to figure out how to structure a node package and what the package.json should look like in order to correctly be able to reference this package from a deno app using an import_map
{
"imports": {
"src/": "./src/lib/",
"core/": "../../shared/typescript/core/src/",
"zod": "npm:zod@3.24.2"
{
"imports": {
"src/": "./src/lib/",
"core/": "../../shared/typescript/core/src/",
"zod": "npm:zod@3.24.2"
Where the core package at the location has a package.json that looks like:
{
"name": "@quillia/core",
"version": "0.0.1",
"type": "module",
"scripts": {
"check": "tsc --noEmit",
"test": "vitest run"
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"peerDependencies": {
"zod": "3.24.2"
}
}
{
"name": "@quillia/core",
"version": "0.0.1",
"type": "module",
"scripts": {
"check": "tsc --noEmit",
"test": "vitest run"
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"peerDependencies": {
"zod": "3.24.2"
}
}
Here's the repo: https://github.com/aliak00/deno-monorepo/ Here's the issue: https://github.com/denoland/deno/issues/28681
1 replies