@buildwithtrace/sdk 0.1.0 → 0.1.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@buildwithtrace/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "TypeScript SDK for Trace — AI-powered PCB & schematic design",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -31,16 +31,24 @@
31
31
  "type": "git",
32
32
  "url": "https://github.com/buildwithtrace/sdk-node"
33
33
  },
34
+ "homepage": "https://buildwithtrace.com",
35
+ "bugs": {
36
+ "url": "https://buildwithtrace.com"
37
+ },
34
38
  "devDependencies": {
35
39
  "@types/node": "^25.9.2",
36
40
  "tsup": "^8.0.0",
37
41
  "typescript": "^5.5.0",
38
42
  "vitest": "^3.0.0"
39
43
  },
44
+ "dependencies": {
45
+ "posthog-node": "^5.36.6"
46
+ },
40
47
  "scripts": {
41
- "build": "tsup src/index.ts --format cjs,esm --dts",
42
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
43
- "test": "vitest run",
44
- "test:watch": "vitest"
48
+ "gen:config": "node scripts/gen-config.mjs",
49
+ "build": "node scripts/gen-config.mjs && tsup src/index.ts --format cjs,esm --dts",
50
+ "dev": "node scripts/gen-config.mjs && tsup src/index.ts --format cjs,esm --dts --watch",
51
+ "test": "node scripts/gen-config.mjs && vitest run",
52
+ "test:watch": "node scripts/gen-config.mjs && vitest"
45
53
  }
46
54
  }