@everfir/az8-cli 0.1.0
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/dist/main.js +7675 -0
- package/package.json +36 -0
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@everfir/az8-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Read-only Project Canvas inspection CLI for AZ8 Studio.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"bin": {
|
|
10
|
+
"az8": "dist/main.js"
|
|
11
|
+
},
|
|
12
|
+
"main": "./dist/main.js",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "rm -rf dist && esbuild src/main.ts --bundle --platform=node --format=esm --target=node20 --outfile=dist/main.js",
|
|
18
|
+
"dev": "tsx src/main.ts",
|
|
19
|
+
"start": "node dist/main.js",
|
|
20
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
21
|
+
"lint": "biome check .",
|
|
22
|
+
"test": "tsx --test src/**/*.test.ts"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/node": "^25.5.0",
|
|
26
|
+
"@workspace/project-canvas-runtime": "workspace:*",
|
|
27
|
+
"@workspace/typescript-config": "workspace:*",
|
|
28
|
+
"esbuild": "^0.27.7",
|
|
29
|
+
"tsx": "^4.21.0",
|
|
30
|
+
"typescript": "^6.0.3",
|
|
31
|
+
"yjs": "^13.6.30"
|
|
32
|
+
},
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=20"
|
|
35
|
+
}
|
|
36
|
+
}
|