@ankhorage/orchestrator 0.1.2 โ†’ 0.2.1

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 (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +8 -2
  3. package/package.json +19 -10
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Ankhorage
3
+ Copyright (c) 2026 ankhorage
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -3,28 +3,34 @@
3
3
  A declarative installation engine for managing project modules.
4
4
 
5
5
  ## ๐ŸŽฏ What you get
6
+
6
7
  - Install features like modules
7
8
  - Remove them without breaking your app
8
9
  - No manual file editing
9
10
 
10
11
  ## โœจ Features
12
+
11
13
  - Deterministic install/uninstall
12
14
  - Dependency-aware execution
13
15
 
14
16
  ## ๐Ÿš€ Installation
17
+
15
18
  ```bash
16
19
  bun add @ankhorage/orchestrator
17
20
  ```
18
21
 
19
22
  ## ๐Ÿ“ฆ Usage
23
+
20
24
  ```ts
21
- orchestrator.install('expo-localization')
22
- orchestrator.uninstall('expo-localization')
25
+ orchestrator.install("expo-localization");
26
+ orchestrator.uninstall("expo-localization");
23
27
  ```
24
28
 
25
29
  ## ๐Ÿงช Use Cases
30
+
26
31
  - Feature-based app composition
27
32
  - Safe project scaffolding
28
33
 
29
34
  ## ๐Ÿง  Why this exists
35
+
30
36
  Typical tools are one-way. This system enables reversible, structured changes.
package/package.json CHANGED
@@ -1,9 +1,18 @@
1
1
  {
2
2
  "name": "@ankhorage/orchestrator",
3
- "version": "0.1.2",
3
+ "version": "0.2.1",
4
4
  "type": "module",
5
+ "license": "MIT",
5
6
  "main": "dist/index.js",
6
7
  "types": "dist/index.d.ts",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/ankhorage/orchestrator.git"
11
+ },
12
+ "homepage": "https://github.com/ankhorage/orchestrator#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/ankhorage/orchestrator/issues"
15
+ },
7
16
  "files": [
8
17
  "dist"
9
18
  ],
@@ -22,19 +31,19 @@
22
31
  "test": "bun test",
23
32
  "knip": "bunx knip",
24
33
  "changeset": "changeset",
25
- "changeset:version": "changeset version"
34
+ "version-packages": "changeset version"
26
35
  },
27
36
  "devDependencies": {
28
- "@ankhorage/devtools": "^1.0.0",
29
- "@changesets/cli": "^2.30.0",
30
- "@types/bun": "^1.3.8",
31
- "@types/node": "^25.2.3",
32
- "eslint": "^10.2.0",
33
- "knip": "^5.83.1",
34
- "prettier": "^3.8.1",
37
+ "@ankhorage/devtools": "^1.0.1",
38
+ "@changesets/cli": "^2.31.0",
39
+ "@types/bun": "^1.3.13",
40
+ "@types/node": "^25.6.0",
41
+ "eslint": "^10.2.1",
42
+ "knip": "^5.88.1",
43
+ "prettier": "^3.8.3",
35
44
  "typescript": "^5.9.3"
36
45
  },
37
- "packageManager": "bun@1.3.11",
46
+ "packageManager": "bun@1.3.13",
38
47
  "publishConfig": {
39
48
  "access": "public"
40
49
  }