1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| {
| "name": "resolve-pkg-maps",
| "version": "1.0.0",
| "description": "Resolve package.json exports & imports maps",
| "keywords": [
| "node.js",
| "package.json",
| "exports",
| "imports"
| ],
| "license": "MIT",
| "repository": "privatenumber/resolve-pkg-maps",
| "funding": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1",
| "author": {
| "name": "Hiroki Osame",
| "email": "hiroki.osame@gmail.com"
| },
| "type": "module",
| "files": [
| "dist"
| ],
| "main": "./dist/index.cjs",
| "module": "./dist/index.mjs",
| "types": "./dist/index.d.cts",
| "exports": {
| "require": {
| "types": "./dist/index.d.cts",
| "default": "./dist/index.cjs"
| },
| "import": {
| "types": "./dist/index.d.mts",
| "default": "./dist/index.mjs"
| }
| },
| "imports": {
| "#resolve-pkg-maps": {
| "types": "./src/index.ts",
| "development": "./src/index.ts",
| "default": "./dist/index.mjs"
| }
| }
| }
|
|