outfitter 0.2.1 → 0.2.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "outfitter",
3
3
  "description": "Outfitter umbrella CLI for scaffolding and project management",
4
- "version": "0.2.1",
4
+ "version": "0.2.2",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist",
@@ -16,24 +16,12 @@
16
16
  "default": "./dist/index.js"
17
17
  }
18
18
  },
19
- "./commands/demo": {
20
- "import": {
21
- "types": "./dist/commands/demo/index.d.ts",
22
- "default": "./dist/commands/demo/index.js"
23
- }
24
- },
25
19
  "./commands/demo/errors": {
26
20
  "import": {
27
21
  "types": "./dist/commands/demo/errors.d.ts",
28
22
  "default": "./dist/commands/demo/errors.js"
29
23
  }
30
24
  },
31
- "./actions": {
32
- "import": {
33
- "types": "./dist/actions.d.ts",
34
- "default": "./dist/actions.js"
35
- }
36
- },
37
25
  "./commands/update": {
38
26
  "import": {
39
27
  "types": "./dist/commands/update.d.ts",
@@ -52,6 +40,12 @@
52
40
  "default": "./dist/commands/doctor.js"
53
41
  }
54
42
  },
43
+ "./commands/migrate-kit": {
44
+ "import": {
45
+ "types": "./dist/commands/migrate-kit.d.ts",
46
+ "default": "./dist/commands/migrate-kit.js"
47
+ }
48
+ },
55
49
  "./commands/add": {
56
50
  "import": {
57
51
  "types": "./dist/commands/add.d.ts",
@@ -64,6 +58,48 @@
64
58
  "default": "./dist/commands/init.js"
65
59
  }
66
60
  },
61
+ "./commands/demo": {
62
+ "import": {
63
+ "types": "./dist/commands/demo/index.d.ts",
64
+ "default": "./dist/commands/demo/index.js"
65
+ }
66
+ },
67
+ "./actions": {
68
+ "import": {
69
+ "types": "./dist/actions.d.ts",
70
+ "default": "./dist/actions.js"
71
+ }
72
+ },
73
+ "./create/planner": {
74
+ "import": {
75
+ "types": "./dist/create/planner.d.ts",
76
+ "default": "./dist/create/planner.js"
77
+ }
78
+ },
79
+ "./create/presets": {
80
+ "import": {
81
+ "types": "./dist/create/presets.d.ts",
82
+ "default": "./dist/create/presets.js"
83
+ }
84
+ },
85
+ "./create": {
86
+ "import": {
87
+ "types": "./dist/create/index.d.ts",
88
+ "default": "./dist/create/index.js"
89
+ }
90
+ },
91
+ "./create/types": {
92
+ "import": {
93
+ "types": "./dist/create/types.d.ts",
94
+ "default": "./dist/create/types.js"
95
+ }
96
+ },
97
+ "./commands/create": {
98
+ "import": {
99
+ "types": "./dist/commands/create.d.ts",
100
+ "default": "./dist/commands/create.js"
101
+ }
102
+ },
67
103
  "./package.json": "./package.json"
68
104
  },
69
105
  "bin": {
@@ -90,14 +126,14 @@
90
126
  "@outfitter/config": "0.3.0",
91
127
  "@outfitter/contracts": "0.2.0",
92
128
  "@outfitter/logging": "0.3.0",
93
- "@outfitter/tooling": "0.2.1",
129
+ "@outfitter/tooling": "0.2.2",
94
130
  "commander": "^14.0.2",
131
+ "typescript": "^5.9.3",
95
132
  "zod": "^4.3.5"
96
133
  },
97
134
  "devDependencies": {
98
135
  "@types/bun": "^1.3.7",
99
- "@types/node": "^25.0.10",
100
- "typescript": "^5.9.3"
136
+ "@types/node": "^25.0.10"
101
137
  },
102
138
  "engines": {
103
139
  "bun": ">=1.3.7"
@@ -20,8 +20,7 @@ pre-commit:
20
20
  pre-push:
21
21
  parallel: false
22
22
  commands:
23
- build:
24
- run: bun run build
25
-
26
- test:
27
- run: bun run test
23
+ verify:
24
+ # TDD-aware strict verification with RED-phase branch carveout
25
+ # (*-tests, */tests, *_tests).
26
+ run: bunx @outfitter/tooling pre-push
@@ -22,19 +22,24 @@
22
22
  "test": "bun test",
23
23
  "test:watch": "bun test --watch",
24
24
  "typecheck": "tsc --noEmit",
25
+ "check": "ultracite check",
26
+ "verify:ci": "bun run typecheck && bun run check && bun run build && bun run test",
25
27
  "lint": "biome check .",
26
28
  "lint:fix": "biome check . --write",
27
29
  "format": "biome format --write .",
30
+ "clean:artifacts": "rm -rf dist .turbo",
28
31
  "clean": "rm -rf dist"
29
32
  },
30
33
  "devDependencies": {
31
- "@biomejs/biome": "^2.3.11",
32
- "@types/bun": "^1.3.6",
33
- "lefthook": "^1.11.0",
34
- "typescript": "^5.9.3"
34
+ "@biomejs/biome": "^2.3.12",
35
+ "@outfitter/tooling": "^0.2.1",
36
+ "@types/bun": "^1.3.7",
37
+ "lefthook": "^2.0.16",
38
+ "typescript": "^5.9.3",
39
+ "ultracite": "^7.1.1"
35
40
  },
36
41
  "engines": {
37
- "bun": ">=1.0.0"
42
+ "bun": ">=1.3.7"
38
43
  },
39
44
  "keywords": [],
40
45
  "license": "MIT"
@@ -20,8 +20,7 @@ pre-commit:
20
20
  pre-push:
21
21
  parallel: false
22
22
  commands:
23
- build:
24
- run: bun run build
25
-
26
- test:
27
- run: bun run test
23
+ verify:
24
+ # TDD-aware strict verification with RED-phase branch carveout
25
+ # (*-tests, */tests, *_tests).
26
+ run: bunx @outfitter/tooling pre-push
@@ -1,17 +1,4 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
3
- "organizeImports": {
4
- "enabled": true
5
- },
6
- "linter": {
7
- "enabled": true,
8
- "rules": {
9
- "recommended": true
10
- }
11
- },
12
- "formatter": {
13
- "enabled": true,
14
- "indentStyle": "tab",
15
- "lineWidth": 100
16
- }
2
+ "$schema": "https://biomejs.dev/schemas/2.3.12/schema.json",
3
+ "extends": ["ultracite/config/biome/core/biome.jsonc"]
17
4
  }
@@ -18,24 +18,28 @@
18
18
  "build": "bun build src/cli.ts --outdir dist --target bun && bun build src/index.ts --outdir dist --target bun --sourcemap",
19
19
  "dev": "bun --watch src/cli.ts",
20
20
  "typecheck": "tsc --noEmit",
21
+ "check": "ultracite check",
22
+ "verify:ci": "bun run typecheck && bun run check && bun run build && bun run test",
21
23
  "test": "bun test",
22
24
  "test:watch": "bun test --watch",
23
25
  "lint": "biome check .",
24
26
  "lint:fix": "biome check . --write",
25
- "format": "biome format --write ."
27
+ "format": "biome format --write .",
28
+ "clean:artifacts": "rm -rf dist .turbo"
26
29
  },
27
30
  "dependencies": {
31
+ "@outfitter/kit": "^0.1.0-rc.0",
28
32
  "@outfitter/cli": "^0.1.0-rc.0",
29
- "@outfitter/contracts": "^0.1.0-rc.0",
30
- "@outfitter/config": "^0.1.0-rc.0",
31
33
  "@outfitter/logging": "^0.1.0-rc.0",
32
34
  "commander": "^12.0.0"
33
35
  },
34
36
  "devDependencies": {
35
- "@biomejs/biome": "^1.9.0",
36
- "@types/bun": "^1.0.0",
37
- "lefthook": "^1.11.0",
38
- "typescript": "^5.5.0"
37
+ "@biomejs/biome": "^2.3.12",
38
+ "@outfitter/tooling": "^0.2.1",
39
+ "@types/bun": "^1.3.7",
40
+ "lefthook": "^2.0.16",
41
+ "typescript": "^5.9.3",
42
+ "ultracite": "^7.1.1"
39
43
  },
40
44
  "license": "MIT"
41
45
  }
@@ -20,8 +20,7 @@ pre-commit:
20
20
  pre-push:
21
21
  parallel: false
22
22
  commands:
23
- build:
24
- run: bun run build
25
-
26
- test:
27
- run: bun run test
23
+ verify:
24
+ # TDD-aware strict verification with RED-phase branch carveout
25
+ # (*-tests, */tests, *_tests).
26
+ run: bunx @outfitter/tooling pre-push
@@ -1,17 +1,4 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
3
- "organizeImports": {
4
- "enabled": true
5
- },
6
- "linter": {
7
- "enabled": true,
8
- "rules": {
9
- "recommended": true
10
- }
11
- },
12
- "formatter": {
13
- "enabled": true,
14
- "indentStyle": "tab",
15
- "lineWidth": 100
16
- }
2
+ "$schema": "https://biomejs.dev/schemas/2.3.12/schema.json",
3
+ "extends": ["ultracite/config/biome/core/biome.jsonc"]
17
4
  }
@@ -20,25 +20,29 @@
20
20
  "dev": "bun --watch src/daemon.ts -- --foreground",
21
21
  "dev:daemon": "bun --watch src/daemon.ts -- --foreground",
22
22
  "typecheck": "tsc --noEmit",
23
+ "check": "ultracite check",
24
+ "verify:ci": "bun run typecheck && bun run check && bun run build && bun run test",
23
25
  "test": "bun test",
24
26
  "test:watch": "bun test --watch",
25
27
  "lint": "biome check .",
26
28
  "lint:fix": "biome check . --write",
27
- "format": "biome format --write ."
29
+ "format": "biome format --write .",
30
+ "clean:artifacts": "rm -rf dist .turbo"
28
31
  },
29
32
  "dependencies": {
33
+ "@outfitter/kit": "^0.1.0-rc.0",
30
34
  "@outfitter/daemon": "^0.1.0-rc.0",
31
35
  "@outfitter/cli": "^0.1.0-rc.0",
32
- "@outfitter/contracts": "^0.1.0-rc.0",
33
- "@outfitter/config": "^0.1.0-rc.0",
34
36
  "@outfitter/logging": "^0.1.0-rc.0",
35
37
  "commander": "^12.0.0"
36
38
  },
37
39
  "devDependencies": {
38
- "@biomejs/biome": "^1.9.0",
39
- "@types/bun": "^1.0.0",
40
- "lefthook": "^1.11.0",
41
- "typescript": "^5.5.0"
40
+ "@biomejs/biome": "^2.3.12",
41
+ "@outfitter/tooling": "^0.2.1",
42
+ "@types/bun": "^1.3.7",
43
+ "lefthook": "^2.0.16",
44
+ "typescript": "^5.9.3",
45
+ "ultracite": "^7.1.1"
42
46
  },
43
47
  "license": "MIT"
44
48
  }
@@ -20,8 +20,7 @@ pre-commit:
20
20
  pre-push:
21
21
  parallel: false
22
22
  commands:
23
- build:
24
- run: bun run build
25
-
26
- test:
27
- run: bun run test
23
+ verify:
24
+ # TDD-aware strict verification with RED-phase branch carveout
25
+ # (*-tests, */tests, *_tests).
26
+ run: bunx @outfitter/tooling pre-push
@@ -1,17 +1,4 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
3
- "organizeImports": {
4
- "enabled": true
5
- },
6
- "linter": {
7
- "enabled": true,
8
- "rules": {
9
- "recommended": true
10
- }
11
- },
12
- "formatter": {
13
- "enabled": true,
14
- "indentStyle": "tab",
15
- "lineWidth": 100
16
- }
2
+ "$schema": "https://biomejs.dev/schemas/2.3.12/schema.json",
3
+ "extends": ["ultracite/config/biome/core/biome.jsonc"]
17
4
  }
@@ -18,24 +18,28 @@
18
18
  "build": "bun build src/server.ts --outdir dist --target bun && bun build src/index.ts --outdir dist --target bun --sourcemap",
19
19
  "dev": "bun --watch src/server.ts",
20
20
  "typecheck": "tsc --noEmit",
21
+ "check": "ultracite check",
22
+ "verify:ci": "bun run typecheck && bun run check && bun run build && bun run test",
21
23
  "test": "bun test",
22
24
  "test:watch": "bun test --watch",
23
25
  "lint": "biome check .",
24
26
  "lint:fix": "biome check . --write",
25
- "format": "biome format --write ."
27
+ "format": "biome format --write .",
28
+ "clean:artifacts": "rm -rf dist .turbo"
26
29
  },
27
30
  "dependencies": {
28
31
  "@modelcontextprotocol/sdk": "^1.0.0",
32
+ "@outfitter/kit": "^0.1.0-rc.0",
29
33
  "@outfitter/mcp": "^0.1.0-rc.0",
30
- "@outfitter/contracts": "^0.1.0-rc.0",
31
- "@outfitter/config": "^0.1.0-rc.0",
32
34
  "@outfitter/logging": "^0.1.0-rc.0"
33
35
  },
34
36
  "devDependencies": {
35
- "@biomejs/biome": "^1.9.0",
36
- "@types/bun": "^1.0.0",
37
- "lefthook": "^1.11.0",
38
- "typescript": "^5.5.0"
37
+ "@biomejs/biome": "^2.3.12",
38
+ "@outfitter/tooling": "^0.2.1",
39
+ "@types/bun": "^1.3.7",
40
+ "lefthook": "^2.0.16",
41
+ "typescript": "^5.9.3",
42
+ "ultracite": "^7.1.1"
39
43
  },
40
44
  "license": "MIT"
41
45
  }