-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 904 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 904 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
38
39
{
"name": "function-health-export",
"version": "1.0.0",
"description": "Export your complete Function Health data via reverse-engineered APIs",
"main": "src/cli.ts",
"module": "src/cli.ts",
"type": "module",
"private": false,
"bin": {
"function-health": "./src/cli.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^24.0.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"dotenv": "^16.5.0",
"ora": "^8.2.0"
},
"scripts": {
"build": "tsc",
"start": "bun run src/cli.ts",
"export": "bun run src/cli.ts export",
"markdown": "bun run src/cli.ts markdown",
"config": "bun run src/cli.ts config",
"help": "bun run src/cli.ts help",
"dev": "bun run --watch src/cli.ts"
},
"files": [
"src/**/*",
"README.md",
"LICENSE"
]
}