-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 4.21 KB
/
package.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@divriots/simba",
"version": "0.8.0",
"description": "A lion based design system as a starter kit for Backlight",
"license": "MIT",
"type": "module",
"scripts": {
"serve": "npx backlight@latest serve 5vtJtbY04aoD1dGKcsu1 --open"
},
"dependencies": {
"@open-wc/dedupe-mixin": "^1.3.1",
"@open-wc/scoped-elements": "^2.1.4",
"@lion/ui": "^0.2.0",
"dark-theme-utils": "^0.4.0",
"lit": "^2.7.0"
},
"devDependencies": {
"@divriots/dockit-core": "^0.8.3"
},
"exports": {
".": "./index.js",
"./button": "./button/index.js",
"./button/define": "./button/define.js",
"./button/define-submit": "./button/define-submit-button.js",
"./checkbox-group": "./checkbox-group/index.js",
"./checkbox-group/define": "./checkbox-group/define.js",
"./checkbox-group/define-checkbox": "./checkbox-group/simba-checkbox.js",
"./checkbox-group/define-checkbox-group": "./checkbox-group/simba-checkbox-group.js",
"./checkbox-group/define-checkbox-indeterminate": "./checkbox-group/simba-checkbox-indeterminate.js",
"./collapsible": "./collapsible/index.js",
"./collapsible/define": "./collapsible/define.js",
"./collapsible/define-collapsible": "./collapsible/simba-collapsible.js",
"./collapsible/define-collapsible-button": "./collapsible/simba-collapsible-button.js",
"./colors": "./colors/index.js",
"./core": "./core/index.js",
"./dialog": "./dialog/index.js",
"./dialog/define": "./dialog/define.js",
"./dialog/define-dialog": "./dialog/simba-dialog.js",
"./dialog/define-dialog-frame": "./dialog/simba-dialog-frame.js",
"./form-core": "./form-core/index.js",
"./icons": "./icons/index.js",
"./icons/define": "./icons/define.js",
"./input": "./input/index.js",
"./input/define": "./input/define.js",
"./input-amount": "./input-amount/index.js",
"./input-amount/define": "./input-amount/define.js",
"./input-date": "./input-date/index.js",
"./input-date/define": "./input-date/define.js",
"./input-datepicker": "./input-datepicker/index.js",
"./input-datepicker/define": "./input-datepicker/define.js",
"./input-datepicker/define-calendar": "./input-datepicker/simba-calendar.js",
"./input-datepicker/define-calendar-overlay-frame": "./input-datepicker/simba-calendar-overlay-frame.js",
"./input-datepicker/define-input-datepicker": "./input-datepicker/simba-input-datepicker.js",
"./input-email": "./input-email/index.js",
"./input-email/define": "./input-email/define.js",
"./input-iban": "./input-iban/index.js",
"./input-iban/define": "./input-iban/define.js",
"./input-range": "./input-range/index.js",
"./input-range/define": "./input-range/define.js",
"./input-stepper": "./input-stepper/index.js",
"./input-stepper/define": "./input-stepper/define.js",
"./localize": "./localize/index.js",
"./overlays": "./overlays/index.js",
"./radii": "./radii/index.js",
"./radio-group": "./radio-group/index.js",
"./radio-group/define": "./radio-group/define.js",
"./radio-group/define-radio": "./radio-group/simba-radio.js",
"./radio-group/define-radio-group": "./radio-group/simba-radio-group.js",
"./select": "./select/index.js",
"./select/define": "./select/define.js",
"./select/define-option": "./select/simba-option.js",
"./select/define-options": "./select/simba-options.js",
"./select/define-select": "./select/simba-select.js",
"./select/define-select-invoker": "./select/simba-select-invoker.js",
"./select/define-select-rich": "./select/simba-select-rich.js",
"./spacing": "./spacing/index.js",
"./switch": "./switch/index.js",
"./switch/define": "./switch/define.js",
"./switch/define-switch": "./switch/simba-switch.js",
"./switch/define-switch-button": "./switch/simba-switch-button.js",
"./textarea": "./textarea/index.js",
"./textarea/define": "./textarea/define.js",
"./themes": "./themes/index.js",
"./tokens": "./tokens/index.js",
"./tooltip": "./tooltip/index.js",
"./tooltip/define": "./tooltip/define.js",
"./typography": "./typography/index.js",
"./validation-feedback": "./validation-feedback/index.js",
"./validation-feedback/define": "./validation-feedback/define.js"
}
}