-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 706 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 706 Bytes
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
{
"name": "lambda-cloud-node-api",
"version": "1.0.1",
"description": "Unofficial Node.js client for the Lambda Cloud API",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git@github.com:code42cate/lambda-cloud-node-api.git"
},
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc",
"build": "tsc"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"lambdalabs",
"lambda",
"lambda cloud",
"cloud",
"nodejs",
"api"
],
"author": "Jonas Scholz",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.3.1",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=18.0.0"
}
}