-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
142 lines (142 loc) · 4.13 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@holejs/wc",
"version": "0.19.0",
"type": "module",
"publishConfig": {
"access": "public"
},
"directories": {
"lib": "dist"
},
"files": [
"CHANGELOG.md",
"README.md",
"LICENSE",
"dist/**"
],
"bugs": {
"url": "https://github.com/holejs/wc/issues"
},
"repository": {
"url": "https://github.com/holejs/wc"
},
"homepage": "https://github.com/holejs/wc",
"keywords": [
"components",
"web-components",
"component-library",
"lit-html",
"lit-element"
],
"author": {
"name": "Ivan Guevara",
"email": "[email protected]",
"url": "https://github.com/thebug404"
},
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"./alert/alert.js": {
"types": "./dist/types/alert/alert.d.ts",
"default": "./dist/alert.js"
},
"./avatar/avatar.js": {
"types": "./dist/types/avatar/avatar.d.ts",
"default": "./dist/avatar.js"
},
"./button/button.js": {
"types": "./dist/types/button/button.d.ts",
"default": "./dist/button.js"
},
"./card/card.js": {
"types": "./dist/types/card/card.d.ts",
"default": "./dist/card.js"
},
"./checkbox/checkbox.js": {
"types": "./dist/types/checkbox/checkbox.d.ts",
"default": "./dist/checkbox.js"
},
"./chip/chip.js": {
"types": "./dist/types/chip/chip.d.ts",
"default": "./dist/chip.js"
},
"./dialog/dialog.js": {
"types": "./dist/types/dialog/dialog.d.ts",
"default": "./dist/dialog.js"
},
"./radio/radio.js": {
"types": "./dist/types/radio/radio.d.ts",
"default": "./dist/radio.js"
},
"./ripple/ripple.js": {
"types": "./dist/types/ripple/ripple.d.ts",
"default": "./dist/ripple.js"
},
"./select/select-option.js": {
"types": "./dist/types/select/select-option.d.ts",
"default": "./dist/select-option.js"
},
"./select/select.js": {
"types": "./dist/types/select/select.d.ts",
"default": "./dist/select.js"
},
"./text-field/text-field.js": {
"types": "./dist/types/text-field/text-field.d.ts",
"default": "./dist/text-field.js"
},
"./styles/colors.css": "./dist/assets/colors.css",
"./styles/elevations.css": "./dist/assets/elevations.css"
},
"scripts": {
"lint:fix": "eslint --fix src/**/*.ts",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"publish:feat": "npm run build && npm version minor -m \"chore: publish %s\" && npm publish && git push origin",
"publish:patch": "npm run build && npm version patch -m \"chore: publish %s\" && npm publish && git push origin",
"dev": "vite serve demo/",
"build": "tsc && vite build",
"preview": "vite preview",
"dev:sb": "storybook dev -p 6006",
"build:sb": "storybook build",
"update-dependencies": "ncu -u"
},
"dependencies": {
"imask": "7.1.3",
"lit": "3.1.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-mdx-gfm": "^8.1.11",
"@storybook/blocks": "^8.1.11",
"@storybook/test": "^8.1.11",
"@storybook/web-components": "^8.1.11",
"@storybook/web-components-vite": "^8.1.11",
"@testing-library/dom": "9.3.3",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"conventional-changelog": "5.1.0",
"eslint": "8.55.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-n": "16.3.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-storybook": "^0.8.0",
"npm-check-updates": "^16.14.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"storybook": "^8.1.11",
"typescript": "5.3.3",
"vite": "4.4.0",
"vite-plugin-dts": "3.6.4",
"vite-plugin-lit-css": "1.0.2",
"vite-plugin-static-copy": "0.17.0"
}
}