@morphist/aspects 0.1.2 → 0.1.4

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": "@morphist/aspects",
3
- "version": "0.1.2",
4
- "description": "Package manager for AI personality aspects like npm for agent personas",
3
+ "version": "0.1.4",
4
+ "description": "Package manager for AI personality aspects - like npm for agent personas",
5
5
  "author": "Morphist <hello@morphist.ai>",
6
6
  "license": "MIT",
7
7
  "type": "module",
@@ -41,12 +41,14 @@
41
41
  "list": "bun run src/cli.ts list",
42
42
  "compile": "bun run src/cli.ts compile",
43
43
  "edit": "bun run src/cli.ts edit",
44
- "build": "bun build src/cli.ts --outdir dist --target node --format esm",
44
+ "build": "bun build src/cli.ts scripts/postinstall.ts --outdir dist --target node --format esm",
45
45
  "typecheck": "tsc --noEmit",
46
46
  "prepublishOnly": "bun run build",
47
+ "postinstall": "node dist/postinstall.js || true",
47
48
  "validate": "bun run scripts/validate-pr.ts",
48
49
  "scan": "bun run scripts/security-scan.ts",
49
50
  "test": "bun test tests/unit",
51
+ "test:e2e": "./scripts/test-cli.sh",
50
52
  "test:unit": "bun test tests/unit",
51
53
  "test:integration": "ASPECTS_REGISTRY_URL=http://localhost:5173/api/v1 bun test tests/integration",
52
54
  "test:all": "bun test tests"