@lion-lamb/thinktrace 1.0.14 → 1.0.15

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.
@@ -57,7 +57,7 @@ var builtinAgents = {
57
57
  oracle: oracleAgent
58
58
  };
59
59
 
60
- // src/thinktrace.ts
60
+ // src/index.ts
61
61
  console.log("hello thinktrace!");
62
62
  var ThinkTracePlugin = async (ctx) => {
63
63
  return {
@@ -69,7 +69,7 @@ var ThinkTracePlugin = async (ctx) => {
69
69
  }
70
70
  };
71
71
  };
72
- var thinktrace_default = ThinkTracePlugin;
72
+ var src_default = ThinkTracePlugin;
73
73
  export {
74
- thinktrace_default as default
74
+ src_default as default
75
75
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lion-lamb/thinktrace",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -14,7 +14,10 @@
14
14
  "access": "public"
15
15
  },
16
16
  "scripts": {
17
- "build": "bun build src/index.ts --outdir ./dist"
17
+ "build": "bun build src/index.ts --outdir ./dist",
18
+ "clean": "rm -rf dist",
19
+ "prepublishOnly": "bun run clean && bun run build",
20
+ "typecheck": "tsc --noEmit"
18
21
  },
19
22
  "files": ["dist"],
20
23
  "exports":{