@morphism-systems/plugin-bundle 0.1.0 → 0.1.3
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 +12 -1
- package/package.json +37 -36
package/README.md
CHANGED
|
@@ -21,10 +21,21 @@ npx @morphism-systems/plugin-bundle config # .morphism/ config only
|
|
|
21
21
|
npx @morphism-systems/plugin-bundle hooks # Git hooks only
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
## Example
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
$ npx @morphism-systems/plugin-bundle install
|
|
28
|
+
✓ Added morphism-governance MCP server to ~/.claude/mcp.json
|
|
29
|
+
✓ Added morphism-math MCP server to ~/.claude/mcp.json
|
|
30
|
+
✓ Created .morphism/config.json
|
|
31
|
+
✓ Installed git hooks from .githooks/
|
|
32
|
+
Setup complete.
|
|
33
|
+
```
|
|
34
|
+
|
|
24
35
|
## Why Morphism
|
|
25
36
|
|
|
26
37
|
Governance-as-code with mathematical guarantees. [Learn more](https://morphism.systems).
|
|
27
38
|
|
|
28
39
|
## License
|
|
29
40
|
|
|
30
|
-
|
|
41
|
+
Business Source License 1.1 (BUSL-1.1) — Change Date 2030-02-20, Change License Apache 2.0
|
package/package.json
CHANGED
|
@@ -1,36 +1,37 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@morphism-systems/plugin-bundle",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "One-command Morphism installer — MCP servers, skills, hooks, config",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@morphism-systems/plugin-bundle",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "One-command Morphism installer — MCP servers, skills, hooks, config",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"morphism-install": "dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
13
|
+
"typecheck": "tsc --noEmit",
|
|
14
|
+
"test": "vitest run",
|
|
15
|
+
"lint": "echo 'no lint configured'"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"morphism",
|
|
19
|
+
"governance",
|
|
20
|
+
"mcp",
|
|
21
|
+
"plugin",
|
|
22
|
+
"installer"
|
|
23
|
+
],
|
|
24
|
+
"license": "BUSL-1.1",
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"commander": "^13.1.0",
|
|
30
|
+
"chalk": "^5.4.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"tsup": "^8.4.0",
|
|
34
|
+
"typescript": "^5.8.3",
|
|
35
|
+
"vitest": "^3.0.0"
|
|
36
|
+
}
|
|
37
|
+
}
|