-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.57 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.57 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
{
"name": "cloud-run-functions",
"type": "module",
"version": "0.2.1",
"bin": "./dist/main.js",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist",
"config.schema.json"
],
"license": "MIT",
"author": "Alec Larson",
"repository": {
"type": "git",
"url": "https://github.com/alloc/cloud-run-functions.git"
},
"prettier": "@alloc/prettier-config",
"scripts": {
"dev": "rimraf dist && tsup --sourcemap --watch",
"build": "rimraf dist && tsup",
"format": "prettier --write .",
"lint": "tsc-lint",
"test": "vitest",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@alloc/prettier-config": "^1.0.0",
"@google-cloud/functions-framework": "latest",
"@hattip/adapter-node": "latest",
"@hattip/core": "latest",
"@types/node": "^22.15.17",
"dotenv": "^16.5.0",
"prettier": "^3.5.3",
"radashi": "^12.4.0",
"rimraf": "^6.0.1",
"tsc-lint": "^0.1.9",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"dependencies": {
"@zod/mini": "4.0.0-beta.0",
"cmd-ts": "^0.14.3",
"esbuild": "^0.25.4",
"find-up-simple": "^1.0.1",
"joycon": "^3.1.1",
"picospawn": "^0.3.2",
"source-map-support": "^0.5.21",
"tinyglobby": "^0.2.13"
},
"peerDependencies": {
"@google-cloud/functions-framework": "*",
"@hattip/adapter-node": "*",
"dotenv": "*"
},
"peerDependenciesMeta": {
"@hattip/adapter-node": {
"optional": true
},
"dotenv": {
"optional": true
}
}
}