-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
33 lines (33 loc) · 1.3 KB
/
Copy pathdeno.json
File metadata and controls
33 lines (33 loc) · 1.3 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
{
"name": "@jorisroling/yves-cli",
"version": "1.1.9",
"license": "MIT",
"exports": "./lib/main.ts",
"nodeModulesDir": "auto",
"publish": {
"include": [
"cli.ts",
"lib/",
"LICENSE",
"README.md",
"deno.json"
]
},
"tasks": {
"start": "deno run --allow-read --allow-env --allow-net=api.github.com --allow-write cli.ts",
"test": "deno test --allow-read --allow-env --allow-run --allow-net=api.github.com --allow-write",
"install": "deno install --global --allow-read --allow-env --allow-net=api.github.com --allow-write --name yves --config deno.json cli.ts",
"compile": "deno compile --allow-read --allow-env --allow-net=api.github.com --allow-write --output yves cli.ts",
"version:patch": "deno run --allow-read --allow-write --allow-run=git scripts/bump-version.ts patch",
"version:minor": "deno run --allow-read --allow-write --allow-run=git scripts/bump-version.ts minor",
"version:major": "deno run --allow-read --allow-write --allow-run=git scripts/bump-version.ts major"
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@^1.0.1",
"@std/fmt/colors": "jsr:@std/fmt@^1.0.10/colors",
"@std/assert": "jsr:@std/assert@^1.0.19",
"yves": "npm:yves@^1.1.5",
"jsonic": "npm:jsonic@^2.27.0",
"sift": "npm:sift@^17.1.3"
}
}