-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.79 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
63
64
{
"name": "tsctl",
"version": "0.1.4",
"description": "Terraform-like CLI for managing Typesense collections, aliases, synonyms, and curations",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"bin": {
"tsctl": "bin/tsctl.js"
},
"files": [
"bin/tsctl.js",
"src",
"README.md"
],
"scripts": {
"build": "bun build src/cli/index.ts --compile --outfile bin/tsctl",
"build:all": "bun run build:linux && bun run build:macos && bun run build:windows",
"build:linux": "bun build src/cli/index.ts --compile --target=bun-linux-x64 --outfile bin/tsctl-linux-x64",
"build:macos": "bun build src/cli/index.ts --compile --target=bun-darwin-arm64 --outfile bin/tsctl-darwin-arm64",
"build:windows": "bun build src/cli/index.ts --compile --target=bun-windows-x64 --outfile bin/tsctl-windows-x64.exe",
"dev": "bun run src/cli/index.ts",
"start": "bun run src/cli/index.ts",
"typecheck": "bun x tsc --noEmit"
},
"keywords": [
"typesense",
"cli",
"infrastructure",
"terraform"
],
"author": "akshitkrnagpal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/akshitkrnagpal/tsctl.git"
},
"bugs": {
"url": "https://github.com/akshitkrnagpal/tsctl/issues"
},
"homepage": "https://github.com/akshitkrnagpal/tsctl#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"cosmiconfig": "^9.0.0",
"diff": "^5.2.0",
"dotenv": "^16.4.5",
"ora": "^8.0.1",
"typesense": "^3.0.0-2",
"yaml": "^2.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/diff": "^5.2.1",
"@types/node": "^20.14.10",
"typescript": "^5.5.3"
}
}