forked from NianJiuZst/openmeta-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "openmeta-cli",
"version": "1.0.0",
"description": "OpenMeta CLI - Developer's daily open source growth companion",
"type": "module",
"private": true,
"engines": {
"bun": ">=1.0.0"
},
"bin": {
"openmeta": "./bin/openmeta.js"
},
"scripts": {
"build": "bun build --target=bun --outfile=bin/openmeta.js ./src/cli.ts",
"dev": "bun run ./src/cli.ts",
"start": "bun run ./src/cli.ts",
"typecheck": "tsgo --noEmit",
"test": "bun test",
"lint": "bunx biome check",
"lint:fix": "bunx biome check --write",
"format": "bunx biome format --write"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/bun": "latest",
"@types/crypto-js": "^4.2.2",
"@typescript/native-preview": "^7.0.0-dev"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"@octokit/rest": "^22.0.1",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"cosmiconfig": "^9.0.1",
"crypto-js": "^4.2.0",
"figures": "^6.1.0",
"gradient-string": "^3.0.0",
"openai": "^6.34.0",
"simple-git": "^3.35.2",
"zod": "^4.3.6"
}
}