@aident-ai/cli 0.1.0 → 0.1.2
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 +10 -5
- package/dist/cli.mjs +1429 -104
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aident-ai/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Aident CLI — umbrella access to Loadout integrations, Playbook automation, Intern tools, and the Aident platform.",
|
|
5
5
|
"homepage": "https://aident.ai",
|
|
6
6
|
"repository": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "bun run scripts/build.ts",
|
|
30
|
-
"dev": "bun run src/cli.ts",
|
|
30
|
+
"dev": "AIDENT_CLI_VERSION=$npm_package_version bun run src/cli.ts",
|
|
31
31
|
"test": "bun test src/__tests__",
|
|
32
32
|
"test:e2e": "bun test integration",
|
|
33
33
|
"typecheck": "tsc --noEmit",
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
},
|
|
38
38
|
"imports": {
|
|
39
39
|
"~cli/*": "./src/*",
|
|
40
|
-
"~e2e/*": "./integration/*"
|
|
40
|
+
"~e2e/*": "./integration/*",
|
|
41
|
+
"~shared/*": "../web/shared/*"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"@aident/eslint-config": "workspace:*",
|