@everfir/az8-cli 0.1.0 → 0.2.0-preview.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/CHANGELOG.md +29 -0
- package/README.md +330 -0
- package/RELEASE.md +59 -0
- package/dist/main.js +24029 -6551
- package/package.json +24 -6
package/package.json
CHANGED
|
@@ -1,30 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everfir/az8-cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.0-preview.1",
|
|
4
|
+
"description": "Semantic Project Canvas client for AZ8 Studio agents.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"files": [
|
|
7
|
-
"dist"
|
|
8
|
+
"dist",
|
|
9
|
+
"CHANGELOG.md",
|
|
10
|
+
"RELEASE.md"
|
|
8
11
|
],
|
|
9
12
|
"bin": {
|
|
10
13
|
"az8": "dist/main.js"
|
|
11
14
|
},
|
|
12
15
|
"main": "./dist/main.js",
|
|
13
16
|
"publishConfig": {
|
|
14
|
-
"access": "public"
|
|
17
|
+
"access": "public",
|
|
18
|
+
"tag": "preview"
|
|
15
19
|
},
|
|
16
20
|
"scripts": {
|
|
17
|
-
"build": "rm -rf dist && esbuild src/main.ts --bundle --platform=node --format=esm --target=node20 --outfile=dist/main.js",
|
|
21
|
+
"build": "rm -rf dist && esbuild src/main.ts --bundle --platform=node --format=esm --target=node20 --banner:js='import { createRequire } from \"node:module\"; const require = createRequire(import.meta.url);' --outfile=dist/main.js",
|
|
18
22
|
"dev": "tsx src/main.ts",
|
|
19
23
|
"start": "node dist/main.js",
|
|
20
24
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
21
25
|
"lint": "biome check .",
|
|
22
|
-
"
|
|
26
|
+
"prepack": "pnpm build",
|
|
27
|
+
"prepublishOnly": "pnpm release:check",
|
|
28
|
+
"release:check": "pnpm test && pnpm typecheck && node scripts/verify-package.js",
|
|
29
|
+
"release:pack": "node scripts/verify-package.js --output-dir ../../tmp/az8-cli-release --keep-install",
|
|
30
|
+
"release:smoke": "node scripts/smoke-test.js",
|
|
31
|
+
"test": "tsx --tsconfig tsconfig.test.json --test src/**/*.test.ts"
|
|
23
32
|
},
|
|
24
33
|
"devDependencies": {
|
|
25
34
|
"@types/node": "^25.5.0",
|
|
35
|
+
"@workspace/account-profile": "workspace:*",
|
|
36
|
+
"@workspace/foundation-data": "workspace:*",
|
|
37
|
+
"@workspace/project-canvas-document": "workspace:*",
|
|
26
38
|
"@workspace/project-canvas-runtime": "workspace:*",
|
|
39
|
+
"@workspace/project-content": "workspace:*",
|
|
40
|
+
"@workspace/project-management": "workspace:*",
|
|
27
41
|
"@workspace/typescript-config": "workspace:*",
|
|
42
|
+
"@workspace/workflow-runtime": "workspace:*",
|
|
28
43
|
"esbuild": "^0.27.7",
|
|
29
44
|
"tsx": "^4.21.0",
|
|
30
45
|
"typescript": "^6.0.3",
|
|
@@ -32,5 +47,8 @@
|
|
|
32
47
|
},
|
|
33
48
|
"engines": {
|
|
34
49
|
"node": ">=20"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"file-type": "^21.3.4"
|
|
35
53
|
}
|
|
36
54
|
}
|