@aicgen/aicgen 1.1.0 → 1.2.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/jest.config.js CHANGED
@@ -4,6 +4,7 @@ export default {
4
4
  testEnvironment: 'node',
5
5
  extensionsToTreatAsEsm: ['.ts'],
6
6
  moduleNameMapper: {
7
+ '^(\\.{1,2}/)+config(\\.js)?$': '<rootDir>/src/__mocks__/config.ts',
7
8
  '^(\\.{1,2}/.*)\\.js$': '$1',
8
9
  },
9
10
  transform: {
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "@aicgen/aicgen",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "AI Config Generator - Automated AI assistant configuration for your projects",
5
5
  "keywords": [
6
6
  "ai",
7
7
  "cli",
8
8
  "code-generator",
9
9
  "claude",
10
- "gemini",
10
+ "antigravity",
11
11
  "openai",
12
+ "codex",
12
13
  "config",
13
14
  "assistant"
14
15
  ],
@@ -22,12 +23,10 @@
22
23
  "aicgen": "dist/index.js"
23
24
  },
24
25
  "type": "module",
25
- "engines": {
26
- "bun": ">=1.0.0"
27
- },
28
26
  "scripts": {
29
27
  "generate-version": "bun run scripts/generate-version.ts",
30
28
  "embed": "bun run generate-version && bun run scripts/embed-data.ts",
29
+ "check:embedded-data": "bun run scripts/check-embedded-data.ts",
31
30
  "prebuild": "bun run embed",
32
31
  "build": "bun build src/index.ts --outdir dist --target node",
33
32
  "build:binary": "bun run embed && bun run scripts/build-binary.ts current",
@@ -72,4 +71,4 @@
72
71
  "ts-jest": "^29.4.6",
73
72
  "typescript": "^5.7.2"
74
73
  }
75
- }
74
+ }
@@ -1,17 +0,0 @@
1
- {
2
- "name": "Verify tests before completion",
3
- "description": "Ensure tests pass before task completion",
4
- "hooks": {
5
- "Stop": [
6
- {
7
- "hooks": [
8
- {
9
- "type": "prompt",
10
- "prompt": "Before completing this task, verify that:\n1. All tests pass\n2. No new failing tests were introduced\n3. Test coverage meets requirements\n\nIs the task truly complete with passing tests?",
11
- "timeout": 15
12
- }
13
- ]
14
- }
15
- ]
16
- }
17
- }