-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 922 Bytes
/
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
{
"name": "thy-clock",
"private": false,
"version": "1.0.1",
"type": "module",
"main": "dist/thy-clock.js",
"types": "dist/thy-clock.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"update-cem": "cem analyze --globs 'src/thy-clock.ts' --litelement --outdir dist"
},
"dependencies": {
"lit": "^3.1.2"
},
"devDependencies": {
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^4.2.3",
"@custom-elements-manifest/analyzer": "^0.10.3"
},
"license": "MIT",
"keywords": [
"webcomponent",
"component",
"analogue clock",
"alarm clock",
"clock",
"thooClock successor",
"typescript",
"javascript",
"vue",
"react",
"vanilla",
"svelte",
"angular",
"lit",
"vite"
],
"customElements": "dist/custom-elements.json",
"engines": {
"node": "22"
}
}