-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.64 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
{
"name": "openmeta-cli",
"version": "1.2.3",
"description": "OpenMeta CLI - Developer's daily open source growth companion",
"type": "module",
"private": false,
"engines": {
"bun": ">=1.0.0"
},
"files": [
"bin/openmeta.js",
"dashboard",
"README.md",
"package.json",
"skills"
],
"publishConfig": {
"access": "public"
},
"bin": {
"openmeta": "bin/openmeta.js"
},
"scripts": {
"build": "node ./scripts/build.mjs",
"dev": "bun run ./src/cli.ts",
"start": "bun run ./src/cli.ts",
"lint": "biome lint --max-diagnostics=1000 src test index.ts package.json tsconfig.json",
"format": "biome check --write --linter-enabled=false src test index.ts package.json tsconfig.json",
"format:check": "biome check --linter-enabled=false src test index.ts package.json tsconfig.json",
"check": "biome check --linter-enabled=false src test index.ts package.json tsconfig.json",
"ci:biome": "biome ci --linter-enabled=false src test index.ts package.json tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@types/bun": "latest",
"@types/crypto-js": "^4.2.2",
"@typescript/native-preview": "^7.0.0-dev.20260608.1"
},
"dependencies": {
"@anthropic-ai/sandbox-runtime": "^0.0.44",
"@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"
}
}