You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
963 B
47 lines
963 B
{ |
|
"version": "1.1.0", |
|
"name": "resolve.exports", |
|
"repository": "lukeed/resolve.exports", |
|
"description": "A tiny (737b), correct, general-purpose, and configurable \"exports\" resolver without file-system reliance", |
|
"module": "dist/index.mjs", |
|
"main": "dist/index.js", |
|
"types": "index.d.ts", |
|
"license": "MIT", |
|
"author": { |
|
"name": "Luke Edwards", |
|
"email": "luke.edwards05@gmail.com", |
|
"url": "https://lukeed.com" |
|
}, |
|
"engines": { |
|
"node": ">=10" |
|
}, |
|
"scripts": { |
|
"build": "bundt", |
|
"test": "uvu -r esm test" |
|
}, |
|
"files": [ |
|
"*.d.ts", |
|
"dist" |
|
], |
|
"exports": { |
|
".": { |
|
"import": "./dist/index.mjs", |
|
"require": "./dist/index.js" |
|
}, |
|
"./package.json": "./package.json" |
|
}, |
|
"keywords": [ |
|
"esm", |
|
"exports", |
|
"esmodules", |
|
"fields", |
|
"modules", |
|
"resolution", |
|
"resolve" |
|
], |
|
"devDependencies": { |
|
"bundt": "1.1.2", |
|
"esm": "3.2.25", |
|
"uvu": "0.5.1" |
|
} |
|
}
|
|
|