@eddacraft/anvil-cli 0.1.0 → 0.1.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 +14 -0
- package/dist/index.js +1 -1
- package/package.json +14 -15
package/LICENSE
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Copyright (c) 2026 EddaCraft. All rights reserved.
|
|
2
|
+
|
|
3
|
+
PROPRIETARY AND CONFIDENTIAL
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are the
|
|
6
|
+
exclusive property of EddaCraft. Unauthorised copying, modification,
|
|
7
|
+
distribution, or use of this Software, via any medium, is strictly prohibited
|
|
8
|
+
without the express written permission of EddaCraft.
|
|
9
|
+
|
|
10
|
+
The Software is provided for evaluation and testing purposes only to authorised
|
|
11
|
+
beta testers. No licence is granted to use, copy, modify, or distribute the
|
|
12
|
+
Software for any other purpose.
|
|
13
|
+
|
|
14
|
+
For licensing enquiries, contact: legal@eddacraft.com
|
package/dist/index.js
CHANGED
|
@@ -277056,7 +277056,7 @@ function runCommand(command) {
|
|
|
277056
277056
|
|
|
277057
277057
|
// src/index.ts
|
|
277058
277058
|
loadAnvilEnv();
|
|
277059
|
-
var CLI_VERSION = true ? "0.1.
|
|
277059
|
+
var CLI_VERSION = true ? "0.1.1" : "0.0.0-dev";
|
|
277060
277060
|
var AUTH_EXEMPT_COMMANDS = /* @__PURE__ */ new Set([
|
|
277061
277061
|
"login",
|
|
277062
277062
|
"logout",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eddacraft/anvil-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "CLI for Anvil - deterministic development automation platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,13 +13,6 @@
|
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "node esbuild.config.mjs",
|
|
18
|
-
"build:types": "tsc --emitDeclarationOnly",
|
|
19
|
-
"typecheck": "tsc --noEmit",
|
|
20
|
-
"test": "vitest",
|
|
21
|
-
"prepublishOnly": "pnpm build"
|
|
22
|
-
},
|
|
23
16
|
"keywords": [
|
|
24
17
|
"anvil",
|
|
25
18
|
"automation",
|
|
@@ -40,11 +33,6 @@
|
|
|
40
33
|
"homepage": "https://github.com/EddaCraft/anvil-001#readme",
|
|
41
34
|
"author": "EddaCraft",
|
|
42
35
|
"dependencies": {
|
|
43
|
-
"@eddacraft/anvil-adapters": "workspace:*",
|
|
44
|
-
"@eddacraft/anvil-aps": "workspace:*",
|
|
45
|
-
"@eddacraft/anvil-core": "workspace:*",
|
|
46
|
-
"@eddacraft/anvil-kindling-integration": "workspace:*",
|
|
47
|
-
"@eddacraft/anvil-runtime": "workspace:*",
|
|
48
36
|
"@eddacraft/kindling-core": "0.1.2",
|
|
49
37
|
"@eddacraft/kindling-provider-local": "0.1.2",
|
|
50
38
|
"@eddacraft/kindling-store-sqlite": "0.1.2",
|
|
@@ -70,6 +58,17 @@
|
|
|
70
58
|
"esbuild": "^0.27.3",
|
|
71
59
|
"ink-testing-library": "^4.0.0",
|
|
72
60
|
"node-pty": "^1.1.0",
|
|
73
|
-
"tuistory": "^0.0.13"
|
|
61
|
+
"tuistory": "^0.0.13",
|
|
62
|
+
"@eddacraft/anvil-adapters": "0.1.0",
|
|
63
|
+
"@eddacraft/anvil-aps": "0.1.0",
|
|
64
|
+
"@eddacraft/anvil-core": "0.1.0",
|
|
65
|
+
"@eddacraft/anvil-kindling-integration": "0.1.0",
|
|
66
|
+
"@eddacraft/anvil-runtime": "0.1.0"
|
|
67
|
+
},
|
|
68
|
+
"scripts": {
|
|
69
|
+
"build": "node esbuild.config.mjs",
|
|
70
|
+
"build:types": "tsc --emitDeclarationOnly",
|
|
71
|
+
"typecheck": "tsc --noEmit",
|
|
72
|
+
"test": "vitest"
|
|
74
73
|
}
|
|
75
|
-
}
|
|
74
|
+
}
|