venfork 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "venfork",
3
+ "version": "0.1.0",
4
+ "description": "Create and manage private mirrors for vendor development",
5
+ "type": "module",
6
+ "bin": {
7
+ "venfork": "./dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "build": "bun build ./src/index.ts --outdir ./dist --target node",
11
+ "dev": "bun run ./src/index.ts",
12
+ "test": "bun test",
13
+ "test:watch": "bun test --watch",
14
+ "test:coverage": "bun test --coverage",
15
+ "setup": "bun install && bun run build",
16
+ "link": "bun link",
17
+ "unlink": "bun unlink",
18
+ "format": "biome format --write .",
19
+ "format:check": "biome format .",
20
+ "lint": "biome lint .",
21
+ "check": "biome check --write .",
22
+ "changeset": "changeset",
23
+ "version": "changeset version && bun install",
24
+ "release": "bun run build && changeset publish"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "assets",
29
+ "README.md",
30
+ "LICENSE"
31
+ ],
32
+ "keywords": [
33
+ "cli",
34
+ "git",
35
+ "github",
36
+ "mirror",
37
+ "fork",
38
+ "vendor",
39
+ "contractor"
40
+ ],
41
+ "author": "",
42
+ "license": "MIT",
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "https://github.com/cabljac/venfork.git"
46
+ },
47
+ "bugs": {
48
+ "url": "https://github.com/cabljac/venfork/issues"
49
+ },
50
+ "homepage": "https://github.com/cabljac/venfork#readme",
51
+ "dependencies": {
52
+ "@clack/prompts": "^0.11.0",
53
+ "execa": "^9.6.0"
54
+ },
55
+ "devDependencies": {
56
+ "@biomejs/biome": "latest",
57
+ "@changesets/changelog-github": "^0.5.0",
58
+ "@changesets/cli": "^2.27.1",
59
+ "@types/bun": "latest",
60
+ "typescript": "^5.7.3"
61
+ },
62
+ "engines": {
63
+ "node": ">=18.0.0"
64
+ }
65
+ }