-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.29 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
{
"name": "@nylas/nylas-react",
"version": "0.1.0",
"description": "React SDK for the Nylas Platform API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"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}'"
},
"dependencies": {
"@nylas/nylas-js": "^0.2.0"
},
"devDependencies": {
"typescript": "^4.7.4",
"@types/react": "^18.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"prettier": "^2.7.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nylas/nylas-react.git"
},
"keywords": [
"email",
"contacts",
"calendar",
"nylas"
],
"author": "Nylas, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/nylas/nylas-react/issues"
},
"homepage": "https://github.com/nylas/nylas-react#readme"
}