-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.45 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "picture-playlist",
"version": "0.0.1",
"author": {
"email": "dan@danielbankhead.com",
"name": "Daniel Bankhead",
"url": "https://danielbankhead.com"
},
"bin": {
"picture-playlist": "build/src/bin/index.js"
},
"dependencies": {
"@google-cloud/functions-framework": "^3.1.1",
"@google-cloud/logging": "^9.6.0",
"@google-cloud/secret-manager": "^3.10.1",
"@google-cloud/storage": "^5.14.4",
"@google-cloud/vision": "^2.4.0",
"@googleapis/youtube": "^4.2.0",
"chalk": "^5.0.1",
"terminal-link": "^3.0.0",
"yargs": "^17.2.1"
},
"description": "A library for generating song recommendations based on an image",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.30",
"@types/yargs": "^17.0.3",
"gts": "^3.1.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=16.14.0"
},
"eslintConfig": {
"extends": "./node_modules/gts/",
"rules": {
"no-console": "warn"
}
},
"eslintIgnore": [
"build/"
],
"files": [
"build/src"
],
"keywords": [],
"license": "Apache-2.0",
"main": "build/src/index.js",
"prettier": "gts/.prettierrc.json",
"scripts": {
"build": "npm run compile",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"lint": "gts lint",
"posttest": "npm run lint",
"pretest": "npm run compile",
"test": "node ."
},
"type": "module",
"types": "build/src/index.d.ts"
}