-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.69 KB
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",
"typings": "hello-web-components.d.ts",
"module": "hello-web-components.js",
"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",
"prebuild": "del lib hello-web-components.* index.html",
"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",
"custom-elements": "web-component-analyzer --format json --outFile custom-elements.json src",
"docs": "jekyll serve -s docs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint",
"lit-analyze": "lit-analyzer src --strict",
"prepare": "husky",
"size": "size-limit",
"storybook": "storybook dev -p 6006",
"test": "node --test",
"test:coverage": "NODE_V8_COVERAGE=./coverage c8 -r lcov node --test --experimental-test-coverage",
"test:e2e": "NODE_OPTIONS='--no-experimental-strip-types' 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",
"preversion": "npm run verify"
},
"peerDependencies": {
"lit": "3.x.x"
},
"devDependencies": {
"@commitlint/cli": "^21.1.0",
"@commitlint/config-conventional": "^21.1.0",
"@eslint/css": "^1.3.0",
"@eslint/js": "^10.0.1",
"@lit-labs/rollup-plugin-minify-html-literals": "^0.2.0",
"@rollup/plugin-terser": "^1.0.0",
"@sand4rt/experimental-ct-web": "^1.59.1",
"@size-limit/file": "^12.1.0",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/web-components-vite": "^10.4.6",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^26.0.1",
"@webcomponents/webcomponentsjs": "^2.8.0",
"c8": "^11.0.0",
"cross-env": "^10.1.0",
"del-cli": "^7.0.0",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-junit": "^9.0.1",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-lit": "^2.3.1",
"eslint-plugin-lit-a11y": "^5.1.1",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-storybook": "^10.4.6",
"eslint-plugin-wc": "^3.1.0",
"eslint-plugin-yml": "^3.5.0",
"global-jsdom": "^29.0.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"lit": "^3.3.3",
"lit-analyzer": "^2.0.3",
"prettier": "^3.9.3",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-pkg": "^0.22.1",
"prettier-plugin-sh": "^0.18.1",
"rollup": "^4.62.2",
"size-limit": "^12.1.0",
"storybook": "^10.4.6",
"ts-lit-plugin": "^2.0.2",
"type-fest": "^5.7.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vite": "^8.1.0",
"web-component-analyzer": "^2.0.0"
},
"overrides": {
"glob-parent": "6.0.2"
}
}