common-es
Version:
provides utilities for nodejs to be able to resolve es modules, such as providing the __dirname and __filename variables
39 lines • 931 B
JSON
{
"name": "common-es",
"version": "1.1.0",
"description": "provides utilities for nodejs to be able to resolve es modules, such as providing the __dirname and __filename variables",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/samislam/common-es.git"
},
"keywords": [
"__dirname",
"__filename",
"filename",
"dirname",
"common-es",
"es-node",
"es6",
"es-next"
],
"author": "Islam Yamor",
"license": "ISC",
"bugs": {
"url": "https://github.com/samislam/common-es/issues"
},
"homepage": "https://github.com/samislam/common-es#readme",
"devDependencies": {
"@types/node": "^18.15.3",
"nodemon": "^2.0.21"
},
"dependencies": {
"typescript": "^4.9.5"
},
"scripts": {
"start:dev": "npx nodemon -q ./dist/index.js",
"build": "npx tsc"
}
}