nylas
Version:
A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.
79 lines (78 loc) • 2.45 kB
JSON
{
"name": "nylas",
"version": "7.11.0",
"description": "A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.",
"main": "lib/cjs/nylas.js",
"types": "lib/types/nylas.d.ts",
"module": "lib/esm/nylas.js",
"files": [
"lib"
],
"engines": {
"node": ">=16"
},
"scripts": {
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint --ext .js,.ts -f visualstudio .",
"lint:fix": "npm run lint -- --fix",
"lint:ci": "npm run lint:fix -- --quiet",
"lint:prettier": "prettier --write '**/*.{ts,js}'",
"lint:prettier:check": "prettier --check '**/*.{ts,js}'",
"export-version": "node scripts/exportVersion.js",
"generate-lib-package-json": "node scripts/generateLibPackageJson.js",
"generate-model-index": "node scripts/generateModelIndex.js",
"prebuild": "npm run export-version && npm run generate-model-index",
"build": "rm -rf lib && npm run build-esm && npm run build-cjs && npm run generate-lib-package-json",
"build-esm": "tsc -p tsconfig.esm.json",
"build-cjs": "tsc -p tsconfig.cjs.json",
"prepare": "npm run build",
"build:docs": "typedoc --out docs",
"version": "npm run export-version && git add src/version.ts"
},
"keywords": [
"email",
"contacts",
"calendar",
"nylas"
],
"author": "Nylas, Inc.",
"license": "MIT",
"dependencies": {
"change-case": "^4.1.2",
"form-data": "^4.0.0",
"mime-types": "^2.1.35",
"node-fetch": "^2.6.12",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@types/jest": "^29.5.2",
"@types/mime-types": "^2.1.2",
"@types/node": "^22.15.21",
"@types/node-fetch": "^2.6.4",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^5.14.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-custom-rules": "^0.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^29.6.1",
"prettier": "^3.5.3",
"ts-jest": "^29.1.1",
"typedoc": "^0.28.4",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/nylas/nylas-nodejs.git"
},
"exports": {
"import": "./lib/esm/nylas.js",
"require": "./lib/cjs/nylas.js",
"types": "./lib/types/nylas.d.ts"
}
}