-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
39 lines (39 loc) · 1014 Bytes
/
deno.json
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
{
"name": "@kellnerd/listenbrainz",
"version": "0.8.4",
"exports": {
".": "./mod.ts",
"./listen": "./listen.ts",
"./timestamp": "./timestamp.ts",
"./parser/json": "./parser/json.ts",
"./parser/musicbrainz": "./parser/musicbrainz.ts",
"./parser/scrobbler-log": "./parser/scrobbler_log.ts",
"./parser/spotify": "./parser/spotify.ts"
},
"imports": {
"@kellnerd/musicbrainz": "jsr:@kellnerd/musicbrainz@^0.3.0",
"@std/assert": "jsr:@std/assert@^1.0.0-rc.3",
"@std/async": "jsr:@std/async@^1.0.0-rc.3",
"@std/csv": "jsr:@std/csv@^1.0.0-rc.1",
"@std/streams": "jsr:@std/streams@^1.0.0-rc.2",
"@std/uuid": "jsr:@std/uuid@^1.0.0"
},
"exclude": [
"docs/"
],
"fmt": {
"exclude": [
"**/*.md"
]
},
"publish": {
"exclude": [
".github/",
".vscode/"
]
},
"tasks": {
"build-docs": "deno doc --html --name=listenbrainz mod.ts listen.ts timestamp.ts parser/*.ts",
"ok": "deno fmt --check && deno lint"
}
}