blob: 2c294e680e3ed18a21c9f47dd8e72d6bfc46a205 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"
}
}
}
|