mirror of
https://github.com/schpet/linear-cli.git
synced 2026-09-14 14:26:50 +08:00
34 lines
1.0 KiB
JSON
34 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json",
|
|
"name": "@schpet/linear-cli",
|
|
"version": "0.2.0",
|
|
"exports": "./main.ts",
|
|
"license": "MIT",
|
|
"tasks": {
|
|
"dev": "deno run --allow-env --allow-sys --allow-run --allow-read --allow-net main.ts ",
|
|
"install": "deno install -c ./deno.json --allow-env --allow-sys --allow-run --allow-read --allow-net -g -f -n linear ./main.ts"
|
|
},
|
|
"imports": {
|
|
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.7",
|
|
"@cliffy/table": "jsr:@cliffy/table@^1.0.0-rc.7",
|
|
"@littletof/charmd": "jsr:@littletof/charmd@^0.1.2",
|
|
"@opensrc/deno-open": "jsr:@opensrc/deno-open@^1.0.0",
|
|
"@std/assert": "jsr:@std/assert@1",
|
|
"@std/cli": "jsr:@std/cli@^1.0.12",
|
|
"@std/encoding": "jsr:@std/encoding@^1.0.5",
|
|
"@std/path": "jsr:@std/path@^1.0.8"
|
|
},
|
|
"publish": {
|
|
"include": [
|
|
"main.ts",
|
|
"README.md"
|
|
]
|
|
},
|
|
"fmt": {
|
|
"exclude": [
|
|
".github/workflows/release.yml",
|
|
".github/workflows/build-setup.yml"
|
|
]
|
|
}
|
|
}
|