1{
2  "name": "pkg-exports",
3  "exports": {
4    "./hole": "./lib/hole.js",
5    "./space": "./sp%20ce.js",
6    "./valid-cjs": "./asdf.js",
7    "./sub/*": "./*",
8    "./sub/internal/*": null,
9    "./belowdir/*": "../belowdir/*",
10    "./belowfile": "../belowfile",
11    "./null": null,
12    "./null/": null,
13    "./invalid1": {},
14    "./invalid2": 1234,
15    "./invalid3": "",
16    "./invalid4": {},
17    "./invalid5": "invalid5.js",
18    "./fallbackdir/*": [[], null, {}, "builtin:x/*", "./*"],
19    "./fallbackfile": [[], null, {}, "builtin:x", "./asdf.js"],
20    "./nofallback1": [],
21    "./nofallback2": [null, {}, "builtin:x"],
22    "./nodemodules": "./node_modules/internalpkg/x.js",
23    "./doubleslash": ".//asdf.js",
24    "./no-addons": {
25      "node-addons": "./addons-entry.js",
26      "default": "./no-addons-entry.js"
27    },
28    "./condition": [{
29      "custom-condition": {
30        "import": "./custom-condition.mjs",
31        "require": "./custom-condition.js"
32      },
33      "import": "///overridden",
34      "require": {
35        "require": {
36          "nomatch": "./nothing.js"
37        },
38        "default": "./sp ce.js"
39      },
40      "default": "./asdf.js",
41      "node": "./lib/hole.js",
42      "import": {
43        "nomatch": "./nothing.js"
44      }
45    }],
46    "./no-ext": "./asdf",
47    "./resolve-self": {
48      "require": "./resolve-self.js",
49      "import": "./resolve-self.mjs"
50    },
51    "./resolve-self-invalid": {
52      "require": "./resolve-self-invalid.js",
53      "import": "./resolve-self-invalid.mjs"
54    },
55    "./*/trailer": "./subpath/*.js",
56    "./*/*railer": "never",
57    "./*trailer": "never",
58    "./*/dir2/trailer": "./subpath/*/index.js",
59    "./a/*": "./subpath/*.js",
60    "./a/b/": "./nomatch/",
61    "./a/b*": "./subpath*.js",
62    "./subpath/*": "./subpath/*",
63    "./subpath/sub-*": "./subpath/dir1/*.js",
64    "./subpath/sub-*.js": "./subpath/dir1/*.js",
65    "./features/*": "./subpath/*/*.js",
66    "./trailing-pattern-slash*": "./trailing-pattern-slash*index.js"
67  }
68}
69