@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.
- package/LICENSE +1 -1
- package/README.md +8 -2
- package/package.json +19 -10
package/LICENSE
CHANGED
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(
|
|
22
|
-
orchestrator.uninstall(
|
|
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
|
|
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
|
-
"
|
|
34
|
+
"version-packages": "changeset version"
|
|
26
35
|
},
|
|
27
36
|
"devDependencies": {
|
|
28
|
-
"@ankhorage/devtools": "^1.0.
|
|
29
|
-
"@changesets/cli": "^2.
|
|
30
|
-
"@types/bun": "^1.3.
|
|
31
|
-
"@types/node": "^25.
|
|
32
|
-
"eslint": "^10.2.
|
|
33
|
-
"knip": "^5.
|
|
34
|
-
"prettier": "^3.8.
|
|
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.
|
|
46
|
+
"packageManager": "bun@1.3.13",
|
|
38
47
|
"publishConfig": {
|
|
39
48
|
"access": "public"
|
|
40
49
|
}
|