mirror of
https://github.com/denoland/deno.git
synced 2025-03-12 07:07:43 -04:00

Supports `deno task --frozen=false some_task`, which is necessary because with `"nodeModulesDir": "auto"` or `"global"` (the default with no package.json) we do an auto-install of npm packages. Closes https://github.com/denoland/deno/issues/28070
21 lines
388 B
Text
21 lines
388 B
Text
{
|
|
"version": "4",
|
|
"specifiers": {
|
|
"npm:@denotest/add@1": "1.0.0",
|
|
"npm:@denotest/subtract@1": "1.0.0"
|
|
},
|
|
"npm": {
|
|
"@denotest/add@1.0.0": {
|
|
"integrity": "[WILDLINE]"
|
|
},
|
|
"@denotest/subtract@1.0.0": {
|
|
"integrity": "[WILDLINE]"
|
|
}
|
|
},
|
|
"workspace": {
|
|
"dependencies": [
|
|
"npm:@denotest/add@1",
|
|
"npm:@denotest/subtract@1"
|
|
]
|
|
}
|
|
}
|