-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeno.json
32 lines (32 loc) · 966 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
{
"name": "@amir-s/dev",
"exports": "./main.ts",
"version": "1.2.1",
"tasks": {
"test": "deno run -A test.ts modules/*/tests/*.test.ts",
"release": "deno run -A release.ts"
},
"imports": {
"@network-utils/vendor-lookup": "npm:@network-utils/vendor-lookup@^1.0.8",
"chokidar": "npm:chokidar@^3.5.3",
"colors": "npm:colors@^1.4.0",
"dns-zonefile": "npm:dns-zonefile@^0.3.0",
"inquirer": "npm:inquirer@^11.0.2",
"javascript-time-ago": "npm:javascript-time-ago@^2.5.11",
"node-fetch": "npm:node-fetch@^3.2.10",
"open": "npm:open@^10.1.0",
"semver": "npm:semver@^7.3.8",
"sudo-block": "npm:sudo-block@^5.0.0",
"yn": "npm:yn@^5.0.0",
"yurnalist": "npm:yurnalist@^2.1.0",
"zx": "npm:zx@^7.1.1",
"fs": "node:fs",
"path": "node:path",
"os": "node:os",
"net": "node:net",
"process": "node:process",
"assert": "node:assert",
"stream": "node:stream",
"url": "node:url"
}
}