-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "sendgrid-type-gen",
"version": "0.0.2",
"description": "Generate TypeScript interface automatically from sendgrid template by using @sendgrid/client",
"main": "dist/index.js",
"bin": {
"sendgrid-type-gen": "bin/cli"
},
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node src/index.ts",
"dev:watch": "ts-node-dev --respawn src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/kazuma0129/sendgrid-template-type"
},
"bugs": {
"url": "https://github.com/kazuma0129/sendgrid-template-type",
"email": "kazuma0129.work@gmail.com"
},
"homepage": "https://github.com/kazuma0129/sendgrid-template-type#readme",
"keywords": ["cli", "sendgrid", "mail"],
"author": "Kazuma Ohashi <kazuma0129.work@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.7.13",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@sendgrid/client": "^7.7.0"
}
}