-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
45 lines (45 loc) · 1.36 KB
/
Copy pathdeno.json
File metadata and controls
45 lines (45 loc) · 1.36 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
{
"name": "@yabako/dpp-cli",
"version": "1.0.4",
"license": "MIT",
"exports": "./main.ts",
"tasks": {
"test": "deno test --allow-read --allow-write --allow-env --allow-run",
"test:publish": "deno publish --dry-run --allow-dirty --set-version 0.0.0",
"lint": "deno lint",
"check": "deno check main.ts src/**/*.ts",
"fmt": "deno fmt",
"build": "deno compile --unstable --allow-read --allow-write --allow-env --allow-run --include=src/templates --output ./dist/dpp-cli ./main.ts",
"build:target": "deno compile --allow-read --allow-write --allow-env --allow-run --include=src/templates --output"
},
"imports": {
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.2.1",
"@gunshi/docs": "npm:@gunshi/docs@^0.35.1",
"@std/fmt": "jsr:@std/fmt@^1.0.10",
"eta": "jsr:@bgub/eta@^4.6.0",
"gunshi": "jsr:@gunshi/gunshi@^0.35.1",
"@shougo/dpp-vim": "jsr:@shougo/dpp-vim@~6.5.0",
"@std/path": "jsr:@std/path@^1.1.5",
"@std/toml": "jsr:@std/toml@^1.0.11",
"@std/fs": "jsr:@std/fs@^1.0.24",
"@std/assert": "jsr:@std/assert@1.0.19"
},
"nodeModulesDir": "auto",
"lint": {
"rules": {
"tags": ["recommended"]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve"
},
"exclude": [
".sandbox/",
"dist/"
]
}