-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
34 lines (34 loc) · 1.68 KB
/
deno.json
File metadata and controls
34 lines (34 loc) · 1.68 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
{
"name": "@molstar/molstar-components",
"version": "0.5.0",
"license": "MIT",
"exports": "./src/mod.ts",
"imports": {
"preact": "npm:preact@10.28.1",
"preact/hooks": "npm:preact@10.28.1/hooks",
"preact/jsx-runtime": "npm:preact@10.28.1/jsx-runtime",
"@preact/signals": "npm:@preact/signals@2.5.1",
"@molstar/mol-view-stories": "jsr:@molstar/mol-view-stories@1.0.4",
"monaco-editor": "npm:monaco-editor@0.55.1/esm/vs/editor/editor.api.js",
"monaco-editor/typescript-contribution": "npm:monaco-editor@0.55.1/esm/vs/language/typescript/monaco.contribution.js",
"monaco-editor/javascript-language": "npm:monaco-editor@0.55.1/esm/vs/basic-languages/javascript/javascript.js",
"monaco-editor/workers/editor": "npm:monaco-editor@0.55.1/esm/vs/editor/editor.worker.js",
"monaco-editor/workers/typescript": "npm:monaco-editor@0.55.1/esm/vs/language/typescript/ts.worker.js",
"esbuild": "npm:esbuild@0.27.2",
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.11.1",
"@std/path": "jsr:@std/path@^1.1.4"
},
"tasks": {
"clean": "rm -f docs/bundle.js docs/bundle.js.map docs/bundle.css docs/molstar-components.js docs/molstar-components.js.map docs/molstar-components.css docs/editor.worker.js docs/ts.worker.js && rm -rf docs/assets",
"build": "deno task clean && deno run --allow-all build.ts",
"serve": "deno run --allow-net --allow-read jsr:@std/http/file-server --host 127.0.0.1 -p 8000 docs",
"dev": "deno task build && deno task serve"
},
"exclude": ["docs/", ".github/"],
"nodeModulesDir": "auto",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"lib": ["dom", "dom.iterable", "es2022"]
}
}