-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
25 lines (25 loc) · 810 Bytes
/
deno.json
File metadata and controls
25 lines (25 loc) · 810 Bytes
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
{
"name": "@wuespace/envardoc",
"version": "0.4.1",
"description": "A documentation generator for .env files",
"license": "MIT",
"main": "main.ts",
"exports": "./main.ts",
"publish": {
"include": ["README.md", "LICENSE", "main.ts", "lib/**/*"]
},
"tasks": {
"dev": "deno run --allow-read='.' --watch main.ts docs .env.example",
"dev:example": "deno run --allow-read='.' --watch main.ts example .env.example",
"run": "deno run --allow-read='.' main.ts docs .env.example"
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.7",
"@std/fs": "jsr:@std/fs@^1.0.6",
"@std/log": "jsr:@std/log@^0.224.11",
"@std/path": "jsr:@std/path@^1.0.8",
"$parse": "./lib/parse.ts",
"$ast": "./lib/ast/mod.ts",
"$writers": "./lib/writers/mod.ts"
}
}