-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.92 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@nylas/javascript",
"version": "1.0.0",
"description": "Modern, open source JavaScript/TypeScript packages for integrating with the Nylas platform",
"type": "module",
"private": true,
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.7.1",
"scripts": {
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"test:watch": "nx run-many -t test:watch",
"format": "nx run-many -t format",
"format:check": "nx run-many -t format:check",
"lint": "nx run-many -t lint --parallel",
"lint:check": "nx run-many -t lint:check --parallel",
"clean": "nx run-many -t clean",
"dev": "nx run-many -t dev",
"typecheck": "nx run-many -t typecheck",
"changeset": "changeset",
"version": "changeset version",
"publish": "nx run-many -t build && changeset publish",
"publish:dry-run": "nx run-many -t build && changeset publish --dry-run",
"publish:no-build": "changeset publish",
"postinstall": "husky install",
"slack:notify": "node ./scripts/send-slack-notification.mjs"
},
"keywords": [
"nylas",
"email",
"calendar",
"contacts",
"oauth",
"authentication",
"api",
"sdk",
"typescript",
"javascript",
"esm",
"web",
"browser",
"node",
"integration",
"platform"
],
"author": "Nylas Inc. <support@nylas.com>",
"license": "MIT",
"homepage": "https://github.com/nylas/web#readme",
"repository": {
"type": "git",
"url": "https://github.com/nylas/web.git"
},
"bugs": {
"url": "https://github.com/nylas/web/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nylas"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.27.9",
"husky": "^8.0.3",
"nx": "21.5.2",
"oxlint": "^1.16.0",
"prettier": "^3.4.2"
},
"dependencies": {
"zx": "^7.2.3"
}
}