-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
48 lines (48 loc) · 1.23 KB
/
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
40
41
42
43
44
45
46
47
48
{
"lock": false,
"tasks": {
"start": "deno run -A --watch=static/,routes/ dev.ts",
"regen": "deno run -A src/regen.ts",
"size": "du -s --exclude=node_modules --exclude=.git .",
"init": "pnpm install react-icons"
},
"name": "@preact-icons/common",
"version": "1.0.12",
"exports": "./mod.ts",
"compilerOptions": {
"lib": [
"dom",
"deno.ns"
],
"jsx": "react-jsx",
"jsxImportSource": "npm:preact@^10.22.1"
},
"publish": {
"exclude": [
".github",
".vscode",
"components",
"src",
"routes",
"static",
"deps.ts",
"main.ts",
"dev.ts",
"fresh.gen.ts",
"NOTE.md"
]
},
"imports": {
"@std/fmt": "jsr:@std/fmt@^0.225.6",
"@std/fs": "jsr:@std/fs@^0.229.3",
"@std/path": "jsr:@std/path@^1.0.0",
"$fresh/": "https://deno.land/x/[email protected]/",
"preact": "npm:preact@^10.22.1",
"preact/jsx-runtime": "npm:preact@^10.22.1/jsx-runtime",
"preact/hooks": "npm:preact@^10.22.1/hooks",
"preact-render-to-string": "npm:[email protected]",
"@preact/signals": "npm:@preact/[email protected]",
"@preact/signals-core": "npm:@preact/[email protected]",
"@std/dotenv": "jsr:@std/dotenv@^0.224.2"
}
}