-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeno.json
51 lines (51 loc) · 2.17 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
49
50
51
{
"name": "@design-system/all",
"version": "0.0.5",
"exports": "./mod.ts",
"tasks": {
"build": "deno run --allow-run --allow-read --allow-write --allow-net --allow-env --allow-sys --allow-ffi ./tasks/build/build.ts ",
"start": "deno run --allow-read --allow-net --allow-env --allow-run ./tasks/start/start.ts"
},
"exclude": ["web-component/", "react-component/"],
"imports": {
"./": "./",
"/": "./",
"@std/path": "jsr:@std/path@^1.0.3",
"jb-button": "file:./web-component/jb-button",
"jb-calendar": "file:./web-component/jb-calendar",
"jb-checkbox-react": "file:./react-component/jb-checkbox",
"jb-date-input": "file:./web-component/jb-date-input",
"jb-file-input": "file:./web-component/jb-file-input",
"jb-grid": "./react-component/jb-grid",
"jb-image-input": "file:./web-component/jb-image-input",
"jb-input": "file:./web-component/jb-input/index.js",
"jb-loading": "file:./web-component/jb-loading",
"jb-mobile-input": "file:./web-component/jb-mobile-input",
"jb-mobile-input-react": "file:./react-component/jb-mobile-input",
"jb-modal": "file:./web-component/jb-modal",
"jb-national-input": "file:./web-component/jb-national-input",
"jb-national-input-react": "file:./react-component/jb-national-input",
"jb-notification": "file:./web-component/jb-notification",
"jb-password-input": "file:./web-component/jb-password-input",
"jb-payment-input": "file:./web-component/jb-payment-input",
"jb-pin-input": "file:./web-component/jb-pin-input",
"jb-popover": "file:./web-component/jb-popover",
"jb-searchbar": "file:./web-component/jb-searchbar",
"jb-select": "file:./web-component/jb-select",
"jb-switch": "file:./web-component/jb-switch",
"jb-textarea": "file:./web-component/jb-textarea",
"jb-time-input": "file:./web-component/jb-time-input",
"jb-time-picker": "file:./web-component/jb-time-picker",
"jb-form": "file:./web-component/jb-form",
"jb-validation": "file:./modules/jb-validation",
"rollup-plugin-gzip": "npm:rollup-plugin-gzip@^4.0.0"
},
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns"
]
}
}