-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.9 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.9 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
{
"name": "@record-evolution/widget-switch",
"description": "IronFlock Widget widget-switch",
"license": "MIT",
"author": "Record Evolution GmbH",
"version": "1.1.3",
"engines": {
"node": ">=24.9.0",
"npm": ">=10.0.2"
},
"type": "module",
"main": "dist/widget-switch.js",
"module": "dist/widget-switch.js",
"types": "dist/src/widget-switch.d.ts",
"files": [
"dist",
"src",
"thumbnail.png"
],
"scripts": {
"analyze": "cem analyze --litelement",
"start": "vite",
"build": "vite build",
"watch": "vite build --watch",
"link": "npm run build && npm link && cd ../RESWARM/frontend && npm link @record-evolution/widget-switch",
"unlink": "npm unlink --global && cd ../RESWARM/frontend && npm unlink @record-evolution/widget-switch && npm i @record-evolution/widget-switch",
"types": "cat src/definition-schema.json | json2ts --style.tabWidth=4 > src/definition-schema.d.ts",
"release": "npm run build && npm run types && npm version patch --tag-version-prefix='' && git push && git push --tag && npm run build"
},
"dependencies": {
"lit": "^3.3.2",
"tslib": "^2.8.1"
},
"peerDependencies": {
"@material/web": "^2.4.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.4",
"@material/web": "^2.4.1",
"@rollup/plugin-replace": "^6.0.2",
"json-schema-to-typescript": "^15.0.4",
"typescript": "5.9.3",
"vite": "^7.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RecordEvolution/widget-switch.git"
},
"keywords": [
"widget",
"switch"
],
"bugs": {
"url": "https://github.com/RecordEvolution/widget-switch/issues"
},
"homepage": "https://github.com/RecordEvolution/widget-switch#readme"
}