diff options
Diffstat (limited to 'tests/registry/npm/@denotest/imports-package-json/1.0.0/package.json')
-rw-r--r-- | tests/registry/npm/@denotest/imports-package-json/1.0.0/package.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/imports-package-json/1.0.0/package.json b/tests/registry/npm/@denotest/imports-package-json/1.0.0/package.json new file mode 100644 index 000000000..2c294e680 --- /dev/null +++ b/tests/registry/npm/@denotest/imports-package-json/1.0.0/package.json @@ -0,0 +1,21 @@ +{ + "name": "imports-package-json", + "type": "module", + "version": "1.0.0", + "description": "", + "license": "ISC", + "author": "", + "exports": { + ".": "./main.js", + "./import-not-defined": "./import_not_defined.js", + "./sub-path-import-not-defined": "./sub_path/import_not_defined.js" + }, + "imports": { + "#hi": "./hi.js", + "#fs": "fs", + "#path": "node:path", + "#fs2": { + "node": "fs" + } + } +} |