-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.56 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
{
"name": "ctio",
"version": "0.3.0",
"description": "Composable CLI for the Conversion Tools API",
"type": "module",
"bin": {
"ctio": "./src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts --",
"build": "bun build --compile --minify --sourcemap src/index.ts --outfile dist/ctio",
"build:mac-arm": "bun build --compile --minify --sourcemap --target=bun-darwin-arm64 src/index.ts --outfile dist/ctio-darwin-arm64",
"build:mac-x64": "bun build --compile --minify --sourcemap --target=bun-darwin-x64 src/index.ts --outfile dist/ctio-darwin-x64",
"build:linux": "bun build --compile --minify --sourcemap --target=bun-linux-x64 src/index.ts --outfile dist/ctio-linux-x64",
"build:win": "bun build --compile --minify --sourcemap --target=bun-windows-x64 src/index.ts --outfile dist/ctio-windows-x64.exe",
"build:all": "bun run build:mac-arm && bun run build:mac-x64 && bun run build:linux && bun run build:win",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"engines": {
"bun": ">=1.1.5"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/conversiontools/ctio.git"
},
"homepage": "https://github.com/conversiontools/ctio",
"bugs": {
"url": "https://github.com/conversiontools/ctio/issues"
},
"keywords": [
"conversiontools",
"cli",
"file-conversion",
"convert"
],
"license": "MIT",
"dependencies": {
"cac": "^6.7.14",
"conversiontools": "^2.1.0",
"smol-toml": "^1.3.0"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.5.0"
}
}