@morphist/aspects 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/README.md +74 -49
- package/dist/cli.js +2873 -704
- package/package.json +10 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@morphist/aspects",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"package-manager"
|
|
26
26
|
],
|
|
27
27
|
"bin": {
|
|
28
|
-
"aspects": "
|
|
28
|
+
"aspects": "dist/cli.js"
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
31
31
|
"dist"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"new": "bun run src/cli.ts create",
|
|
38
38
|
"init": "bun run src/cli.ts create",
|
|
39
39
|
"add": "bun run src/cli.ts add",
|
|
40
|
-
"
|
|
40
|
+
"get": "bun run src/cli.ts add",
|
|
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",
|
|
@@ -45,10 +45,16 @@
|
|
|
45
45
|
"typecheck": "tsc --noEmit",
|
|
46
46
|
"prepublishOnly": "bun run build",
|
|
47
47
|
"validate": "bun run scripts/validate-pr.ts",
|
|
48
|
-
"scan": "bun run scripts/security-scan.ts"
|
|
48
|
+
"scan": "bun run scripts/security-scan.ts",
|
|
49
|
+
"test": "bun test tests/unit",
|
|
50
|
+
"test:unit": "bun test tests/unit",
|
|
51
|
+
"test:integration": "ASPECTS_REGISTRY_URL=http://localhost:5173/api/v1 bun test tests/integration",
|
|
52
|
+
"test:all": "bun test tests"
|
|
49
53
|
},
|
|
50
54
|
"dependencies": {
|
|
51
55
|
"@clack/prompts": "^0.11.0",
|
|
56
|
+
"@noble/hashes": "^2.0.1",
|
|
57
|
+
"@scure/base": "^2.0.0",
|
|
52
58
|
"citty": "^0.1.6",
|
|
53
59
|
"consola": "^3.2.3",
|
|
54
60
|
"ofetch": "^1.3.4",
|