-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.07 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
{
"name": "@ueberbit/components",
"version": "0.0.0",
"description": "UEBERBIT Components Library",
"author": {
"name": "UEBERBIT GmbH",
"url": "https://ueberbit.de"
},
"contributors": [
{
"name": "Willi Woldt",
"email": "willi.woldt@ueberbit.de"
}
],
"license": "MIT",
"homepage": "https://github.com/ueberbit/UElements",
"keywords": [
"Component Library",
"lit"
],
"customElements": "dist/custom-elements.json",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run \"/^build:.*/\"",
"dev": "pnpm run \"/^dev:.*/\"",
"_build:package": "vite build",
"build:storybook": "storybook build -o ./dist",
"build:wca:vscode": "wca \"./src/**/*.ts\" --outFiles dist/vscode.html-custom-data.json --format vscode",
"build:wca:ce": "wca \"./src/**/*.ts\" --outFiles dist/custom-elements.json",
"dev:storybook": "storybook dev -p 6006 --ci",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:js": "eslint \"src/**/*.ts\" --cache --no-error-on-unmatched-pattern",
"fix": "pnpm run \"/^fix:.*/\"",
"fix:js": "eslint \"src/**/*.ts\" --cache --no-error-on-unmatched-pattern --fix",
"fix:css": "pnpm dlx stylelint \"src/**/*.css\" --allow-empty-input --fix",
"release": "pnpm dlx bumpp package.json --commit --push --tag",
"taze": "pnpm dlx taze -r",
"test": "vitest",
"postinstall": "pnpm exec simple-git-hooks"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"lit": "3.0.0-pre.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@storybook/addon-actions": "^7.4.0",
"@storybook/addon-docs": "^7.4.0",
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/blocks": "^7.4.0",
"@storybook/theming": "^7.4.0",
"@storybook/web-components": "^7.4.0",
"@storybook/web-components-vite": "^7.4.0",
"@ueberbit/eslint-config": "0.1.0-beta.12",
"@ueberbit/stylelint-config": "0.1.0-beta.12",
"autoprefixer": "^10.4.15",
"eslint-plugin-lit": "^1.9.1",
"eslint-plugin-lit-a11y": "4.1.0",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-wc": "^1.5.0",
"fast-glob": "^3.3.1",
"happy-dom": "^10.11.2",
"lightningcss": "^1.21.7",
"lint-staged": "^14.0.1",
"magic-string": "^0.30.3",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.1",
"simple-git-hooks": "^2.9.0",
"storybook": "^7.4.0",
"storybook-dark-mode": "^3.0.1",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"unimport": "^3.2.0",
"vite": "^4.4.9",
"vitest": "^0.34.3",
"web-component-analyzer": "^1.1.7"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"preserveUnused": true
},
"lint-staged": {
"src/**/*.ts": "pnpm exec eslint --cache --fix",
"src/**/*.css": "pnpm dlx stylelint --fix"
},
"prettier": {
"arrowParens": "always",
"endOfLine": "auto",
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"stylelint": {
"extends": [
"@ueberbit/stylelint-config"
]
}
}