-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
42 lines (42 loc) · 1.97 KB
/
Copy pathdeno.json
File metadata and controls
42 lines (42 loc) · 1.97 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
{
"extends": "../../deno.base.json",
"name": "@rules-compiler/typescript",
"version": "1.0.0",
"exports": {
".": "./src/index.ts",
"./lib": "./src/lib/index.ts",
"./console": "./src/console/index.ts",
"./cli": "./src/cli.ts"
},
"tasks": {
"start": "deno run --allow-read --allow-write --allow-env --allow-run src/mod.ts",
"interactive": "deno run --allow-read --allow-write --allow-env --allow-run src/mod.ts --interactive",
"compile": "deno run --allow-read --allow-write --allow-env --allow-run src/mod.ts --compile",
"compile:yaml": "deno run --allow-read --allow-write --allow-env --allow-run src/mod.ts -c compiler-config.yaml",
"compile:toml": "deno run --allow-read --allow-write --allow-env --allow-run src/mod.ts -c compiler-config.toml",
"dev": "deno run --allow-read --allow-write --allow-env --allow-run --watch src/mod.ts",
"test": "deno test --allow-read --allow-write --allow-env --allow-net src/",
"test:coverage": "deno test --allow-read --allow-write --allow-env --allow-net --coverage=coverage src/",
"check": "deno check src/mod.ts",
"lint": "deno lint src/",
"fmt": "deno fmt src/",
"version": "deno run --allow-read --allow-env src/mod.ts --version",
"generate:types": "deno run --allow-read --allow-write --no-npm generate-types.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.18",
"@std/testing": "jsr:@std/testing@^1.0.18",
"node:fs": "node:fs",
"node:path": "node:path",
"node:crypto": "node:crypto",
"yaml": "npm:yaml@^2.8.2",
"@iarna/toml": "npm:@iarna/toml@^2.2.5",
"@jk-com/adblock-compiler": "https://raw.githubusercontent.com/jaypatrick/adblock-compiler/master/src/index.ts",
"chalk": "npm:chalk@^5.6.2",
"cli-table3": "npm:cli-table3@^0.6.5",
"ora": "npm:ora@^9.0.0",
"figlet": "npm:figlet@^1.9.4",
"@inquirer/prompts": "npm:@inquirer/prompts@^8.1.0"
},
"allowScripts": ["npm:core-js@3.47.0"]
}