• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    "./belowdir/": "../belowdir/",
9    "./belowfile": "../belowfile",
10    "./missingtrailer/": ".",
11    "./null": null,
12    "./null/": null,
13    "./invalid1": {},
14    "./invalid2": 1234,
15    "./invalid3": "",
16    "./invalid4": {},
17    "./invalid5": "invalid5.js",
18    "./fallbackdir/": [[], null, {}, "builtin:x/", "./fallbackfile", "./"],
19    "./fallbackfile": [[], null, {}, "builtin:x", "./asdf.js"],
20    "./nofallback1": [],
21    "./nofallback2": [null, {}, "builtin:x"],
22    "./nodemodules": "./node_modules/internalpkg/x.js",
23    "./no-addons": {
24      "node-addons": "./addons-entry.js",
25      "default": "./no-addons-entry.js"
26    },
27    "./condition": [{
28      "custom-condition": {
29        "import": "./custom-condition.mjs",
30        "require": "./custom-condition.js"
31      },
32      "import": "///overridden",
33      "require": {
34        "require": {
35          "nomatch": "./nothing.js"
36        },
37        "default": "./sp ce.js"
38      },
39      "default": "./asdf.js",
40      "node": "./lib/hole.js",
41      "import": {
42        "nomatch": "./nothing.js"
43      }
44    }],
45    "./no-ext": "./asdf",
46    "./resolve-self": {
47      "require": "./resolve-self.js",
48      "import": "./resolve-self.mjs"
49    },
50    "./resolve-self-invalid": {
51      "require": "./resolve-self-invalid.js",
52      "import": "./resolve-self-invalid.mjs"
53    },
54    "./*/trailer": "./subpath/*.js",
55    "./*/*railer": "never",
56    "./*trailer": "never",
57    "./*/dir2/trailer": "./subpath/*/index.js",
58    "./a/*": "./subpath/*.js",
59    "./a/b/": "./nomatch/",
60    "./a/b*": "./subpath*.js",
61    "./subpath/": "./subpath/",
62    "./subpath/sub-*": "./subpath/dir1/*.js",
63    "./subpath/sub-*.js": "./subpath/dir1/*.js",
64    "./features/*": "./subpath/*/*.js"
65  }
66}
67