-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.59 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.59 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
{
"name": "spinbook",
"version": "1.0.3",
"description": "SpinBook: Sistema profesional de reservas para estudios de grabación musical con Google Calendar API y Telegram.",
"main": "index.html",
"type": "module",
"scripts": {
"start": "vercel dev",
"dev": "vercel dev --listen 3000",
"build": "echo 'No build step required for static deployment'",
"deploy": "vercel --prod",
"logs": "vercel logs",
"test": "echo 'Tests not configured yet'",
"lint": "echo 'Linting not configured yet'"
},
"keywords": [
"booking",
"calendar",
"studio",
"recording",
"music",
"google-calendar",
"vercel",
"serverless",
"javascript",
"pdf-generation"
],
"author": {
"name": "SpinBook - Beraka Studio",
"email": "hola@beraka.cl",
"url": "https://github.com/berakastudio/spinbook"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/berakastudio/spinbook.git"
},
"bugs": {
"url": "https://github.com/berakastudio/spinbook/issues"
},
"homepage": "https://github.com/berakastudio/spinbook#readme",
"dependencies": {
"googleapis": "^108.0.0"
},
"devDependencies": {
"vercel": "^28.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"vercel": {
"functions": {
"api/*.js": {
"runtime": "nodejs18.x"
}
}
},
"browserslist": [
"defaults",
"not IE 11"
],
"files": [
"index.html",
"src/",
"api/",
"README.md",
"package.json"
]
}