-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.03 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
{
"name": "ue-lib",
"version": "0.0.16",
"private": true,
"description": "Collection of utils and components.",
"license": "MIT",
"author": "Willi Woldt",
"engines": {
"node": ">=16",
"pnpm": ">=7.1.0"
},
"scripts": {
"dev:sb": "start-storybook -p 6006 --ci -h localhost",
"dev": "pnpm -r dev --parallel",
"build:sb": "build-storybook -o dist",
"build": "pnpm -r run build",
"test": "pnpm -r test run",
"lint": "pnpm eslint '**/*.{js,ts,tsx,json}'",
"lint:fix": "pnpm eslint '**/*.{js,ts,tsx,json}' --fix",
"publish:ci": "pnpm -r publish --access public --no-git-checks",
"release": "pnpm bumpp package.json packages/*/package.json --commit --tag --push"
},
"publishConfig": {
"@ueberbit:registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@antfu/eslint-config": "^0.23.0",
"@storybook/addon-actions": "^6.4.18",
"@storybook/addon-essentials": "^6.4.18",
"@storybook/addon-links": "^6.4.18",
"@storybook/builder-vite": "^0.1.33",
"@storybook/web-components": "^6.4.19",
"@types/node": "^17.0.31",
"autoprefixer": "^10.4.7",
"bumpp": "^7.1.1",
"color": "^4.2.0",
"cssnano": "^5.1.7",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"happy-dom": "^3.1.1",
"lit": "^2.2.1",
"lit-html": "^2.2.0",
"postcss": "^8.4.12",
"postcss-nested": "^5.0.6",
"rimraf": "^3.0.2",
"typescript": "^4.6.3",
"vite": "^2.9.8",
"vitest": "^0.10.4",
"web-component-analyzer": "^1.1.6"
},
"eslintConfig": {
"extends": [
"@antfu",
"eslint-config-prettier"
],
"rules": {
"antfu/if-newline": "off"
}
},
"prettier": {
"arrowParens": "always",
"endOfLine": "auto",
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"browserslist": [
"last 2 Chrome versions",
"last 2 and_chr versions",
"last 2 ff versions",
"last 2 and_ff versions",
"last 2 Edge versions",
"last 2 Safari versions",
"last 2 ios_saf versions"
]
}