-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.6 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
{
"name": "embeddable-cli",
"version": "0.1.5",
"description": "CLI tool for Embeddable API - manage database connections, environments, and dashboards",
"private": true,
"type": "module",
"main": "dist/cli.js",
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc",
"build:all": "npm run build:linux && npm run build:mac && npm run build:win",
"build:linux": "bun build src/cli.ts --compile --target=bun-linux-x64 --outfile dist/embed-linux-x64",
"build:mac": "bun build src/cli.ts --compile --target=bun-darwin-arm64 --outfile dist/embed-macos-arm64",
"build:win": "bun build src/cli.ts --compile --target=bun-windows-x64 --outfile dist/embed-win-x64.exe",
"test": "vitest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"publish": "./scripts/publish.sh",
"publish:patch": "./scripts/publish.sh patch",
"publish:minor": "./scripts/publish.sh minor",
"publish:major": "./scripts/publish.sh major"
},
"keywords": [
"embeddable",
"cli",
"analytics",
"dashboard"
],
"author": "Embeddable",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.11.0",
"@types/semver": "^7.7.0",
"chalk": "^5.4.1",
"citty": "^0.1.6",
"cli-table3": "^0.6.5",
"ora": "^8.2.0",
"semver": "^7.7.2"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"semver-cli": "^1.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}