ai-eng-system 0.0.1 → 0.0.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-eng-system",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "AI Engineering System with context engineering and research orchestration for Claude Code",
5
5
  "author": "v1truv1us",
6
6
  "license": "MIT",
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from "./dist/index";
2
+ export { AiEngSystem as default } from "./dist/index";
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // Auto-generated compatibility shim for directory imports
2
+ export * from "./dist/index.js";
3
+ export { AiEngSystem as default } from "./dist/index.js";
package/package.json CHANGED
@@ -1,16 +1,20 @@
1
1
  {
2
2
  "name": "ai-eng-system",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Compounding engineering system for Claude Code and OpenCode. Shared agents, commands, skills, and plugin development tools.",
5
5
  "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
6
8
  "exports": {
7
- ".": {
8
- "types":"./dist/index.d.ts",
9
- "default": "./dist/index.js"
10
- }
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "default": "./dist/index.js"
12
+ }
11
13
  },
12
14
  "files": [
13
15
  "dist/",
16
+ "index.js",
17
+ "index.d.ts",
14
18
  "README.md",
15
19
  "LICENSE"
16
20
  ],