-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "@coredirective/cf-cli",
"publishConfig": {
"access": "public"
},
"version": "0.1.0",
"description": "CLI for CodeForge development workflows",
"keywords": [
"codeforge",
"cli",
"code-review",
"developer-tools",
"devcontainer",
"claude"
],
"type": "module",
"bin": {
"codeforge": "./dist/codeforge.js"
},
"scripts": {
"build": "bun build src/index.ts --outfile dist/codeforge.js --target bun",
"dev": "bun run src/index.ts",
"test": "bun test",
"build:binary": "bun build --compile src/index.ts --outfile dist/codeforge",
"build:binary:linux": "bun build --compile src/index.ts --outfile dist/codeforge-linux-x64 --target bun-linux-x64",
"build:binary:darwin": "bun build --compile src/index.ts --outfile dist/codeforge-darwin-arm64 --target bun-darwin-arm64",
"build:binary:darwin-x64": "bun build --compile src/index.ts --outfile dist/codeforge-darwin-x64 --target bun-darwin-x64",
"prepublishOnly": "bun run build && bun test"
},
"dependencies": {
"@devcontainers/cli": "^0.71.0",
"commander": "^13.0.0",
"chalk": "^5.4.0"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "GPL-3.0",
"author": "AnExiledDev",
"repository": {
"type": "git",
"url": "git+https://github.com/AnExiledDev/CodeForge.git",
"directory": "cli"
},
"homepage": "https://github.com/AnExiledDev/CodeForge/tree/main/cli#readme",
"files": [
"dist/",
"README.md"
],
"bugs": {
"url": "https://github.com/AnExiledDev/CodeForge/issues"
}
}