esbuild-node-loader
Version:
Transpile TypeScript to ESM with Node.js loader
51 lines (50 loc) • 1.27 kB
JSON
{
"name": "esbuild-node-loader",
"version": "0.8.0",
"description": "Transpile TypeScript to ESM with Node.js loader",
"keywords": [
"node-loader"
],
"homepage": "https://github.com/antfu/esbuild-node-loader#readme",
"bugs": {
"url": "https://github.com/antfu/esbuild-node-loader/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/esbuild-node-loader.git"
},
"funding": "https://github.com/sponsors/antfu",
"license": "MIT",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"sideEffects": false,
"exports": {
".": {
"import": "./loader.mjs"
}
},
"main": "./loader.mjs",
"files": [
"loader.mjs"
],
"scripts": {
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"release": "bumpp --commit --push --tag",
"test": "node --experimental-loader ./loader.mjs test/entry.ts"
},
"dependencies": {
"esbuild": ">=0.13.12",
"node-fetch": "^3.2.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@antfu/eslint-config": "^0.16.1",
"@antfu/ni": "^0.13.2",
"@types/node": "^17.0.21",
"bumpp": "^7.1.1",
"eslint": "^8.10.0",
"execa": "^6.1.0",
"typescript": "^4.6.2",
"uvu": "^0.5.3"
}
}