-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
104 lines (104 loc) · 3.62 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": "hello-web-components",
"version": "1.4.0",
"type": "module",
"description": "A simple starter hello world web component written in typescript, using lit",
"repository": "fernandopasik/hello-web-components",
"homepage": "https://github.com/fernandopasik/hello-web-components",
"bugs": "https://github.com/fernandopasik/hello-web-components/issues",
"author": "Fernando Pasik <fernando@pasik.com.ar> (https://fernandopasik.com)",
"license": "MIT",
"main": "hello-web-components.js",
"module": "hello-web-components.js",
"typings": "hello-web-components.d.ts",
"files": [
"/hello-web-components.*",
"/lib"
],
"keywords": [
"hello-world",
"lit",
"lit-element",
"lit-html",
"starter",
"web-components"
],
"scripts": {
"analyze": "wca analyze src --format json --outFile custom-elements.json",
"build": "tsc -p tsconfig.build.json && rollup -c",
"check-types": "tsc --noEmit",
"clean": "del _site coverage lib hello-web-components.* playwright/.cache playwright-report test-results",
"docs": "jekyll serve -s docs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint",
"lit-analyze": "lit-analyzer src --strict",
"prebuild": "del lib hello-web-components.* index.html",
"prepare": "husky",
"preversion": "npm run verify",
"size": "size-limit",
"storybook": "storybook dev -p 6006",
"test": "node --test --import tsx src/**/*.test.*",
"test:coverage": "NODE_V8_COVERAGE=./coverage c8 -r lcov node --test --experimental-test-coverage --import tsx src/**/*.test.*",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install --with-deps",
"verify": "npm run format:check && npm run lint && npm run lit-analyze && npm run check-types && npm run test:coverage && npm run build && npm run size"
},
"peerDependencies": {
"lit": "3.x.x"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@rollup/plugin-terser": "^0.4.4",
"@sand4rt/experimental-ct-web": "^1.49.1",
"@size-limit/file": "^11.1.6",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/web-components": "^8.4.7",
"@storybook/web-components-vite": "^8.4.7",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.10.5",
"@webcomponents/webcomponentsjs": "^2.8.0",
"c8": "^10.1.3",
"cross-env": "^7.0.3",
"del-cli": "^6.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-formatter-junit": "^8.40.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-lit-a11y": "^4.1.4",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-storybook": "^0.11.2",
"eslint-plugin-wc": "^2.2.0",
"eslint-plugin-yml": "^1.16.0",
"global-jsdom": "^26.0.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.3.0",
"lit": "^3.2.1",
"lit-analyzer": "^2.0.3",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-sh": "^0.14.0",
"rollup": "^4.29.1",
"size-limit": "^11.1.6",
"storybook": "^8.4.7",
"ts-lit-plugin": "^2.0.2",
"tsx": "^4.19.2",
"type-fest": "^4.31.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.7",
"wait-on": "^8.0.1",
"web-component-analyzer": "^2.0.0"
},
"overrides": {
"glob-parent": "6.0.2"
}
}