-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.28 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
{
"name": "@crewdle/ai-firebase-functions",
"version": "1.0.2",
"description": "Firebase Cloud Functions for AI workflows for Crewdle applications",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"lint": "eslint --ext .js,.ts .",
"deploy": "firebase deploy --only functions",
"serve": "npm run build && firebase emulators:start --only functions",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"firebase",
"functions",
"ai",
"workflow",
"crewdle",
"typescript",
"cloud-functions"
],
"author": "Crewdle",
"license": "MIT",
"engines": {
"node": ">=14.10.0"
},
"peerDependencies": {
"firebase-admin": ">=11.0.0",
"firebase-functions": ">=4.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"firebase-admin": "^13.5.0",
"firebase-functions": "^6.4.0",
"typescript": "^5.0.0"
},
"files": [
"lib/**/*",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/crewdle/ai-firebase-functions.git"
},
"publishConfig": {
"access": "public"
}
}