-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@calycode/cli",
"version": "0.6.1",
"description": "Command-line interface for Xano providing terminal access to Xano workflows",
"publishConfig": {
"access": "restricted",
"tag": "latest"
},
"license": "MIT",
"author": "Mihály Tóth | @calycode",
"keywords": [
"calycode",
"xano",
"cli",
"command-line",
"api",
"openapi",
"backend",
"automation",
"developer-tools"
],
"bin": {
"xano": "dist/index.cjs"
},
"main": "dist/index.cjs",
"type": "module",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/calycode/xano-tools.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/calycode/xano-tools/issues"
},
"homepage": "https://github.com/calycode/xano-tools/tree/main/packages/cli#readme",
"devDependencies": {
"@calycode/core": "workspace:*",
"@repo/types": "workspace:*",
"@repo/utils": "workspace:*",
"shx": "^0.4.0",
"@clack/prompts": "^0.11.0",
"commander": "^14.0.0",
"js-yaml": "^4.1.0",
"tar": "^7.4.3"
},
"scripts": {
"clean": "trash dist tsconfig.tsbuildinfo",
"build:js": "tsx esbuild.config.ts",
"build:chmod": "shx chmod +x dist/index.cjs",
"build": "pnpm build:js && pnpm build:chmod && pnpm link -g",
"xano": "node dist/index.cjs"
}
}