@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.
Files changed (2) hide show
  1. package/README.md +12 -1
  2. 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
- MIT
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.0",
4
- "description": "One-command Morphism installer — MCP servers, skills, hooks, config",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "bin": {
8
- "morphism-install": "dist/index.js"
9
- },
10
- "scripts": {
11
- "build": "tsup src/index.ts --format esm --dts --clean",
12
- "typecheck": "tsc --noEmit",
13
- "test": "vitest run",
14
- "lint": "echo 'no lint configured'"
15
- },
16
- "keywords": [
17
- "morphism",
18
- "governance",
19
- "mcp",
20
- "plugin",
21
- "installer"
22
- ],
23
- "license": "BUSL-1.1",
24
- "publishConfig": {
25
- "access": "public"
26
- },
27
- "dependencies": {
28
- "commander": "^13.1.0",
29
- "chalk": "^5.4.0"
30
- },
31
- "devDependencies": {
32
- "tsup": "^8.4.0",
33
- "typescript": "^5.8.3",
34
- "vitest": "^3.0.0"
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
+ }