-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.75 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.75 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
{
"name": "@record-evolution/widget-image",
"description": "Webcomponent widget-image following open-wc recommendations",
"license": "MIT",
"author": "widget-image",
"version": "1.1.18",
"engines": {
"node": ">=24.9.0",
"npm": ">=10.0.2"
},
"type": "module",
"main": "dist/widget-image.js",
"types": "dist/src/widget-image.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-image",
"unlink": "npm unlink --global && cd ../RESWARM/frontend && npm unlink @record-evolution/widget-image && npm i @record-evolution/widget-image",
"types": "cat src/definition-schema.json | json2ts > 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"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.5",
"@rollup/plugin-replace": "^6.0.2",
"json-schema-to-typescript": "^15.0.4",
"typescript": "5.9.2",
"vite": "^7.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RecordEvolution/widget-image.git"
},
"keywords": [
"widget",
"image"
],
"bugs": {
"url": "https://github.com/RecordEvolution/widget-image/issues"
},
"homepage": "https://github.com/RecordEvolution/widget-image#readme"
}