-
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) · 2.05 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.05 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-textbox",
"description": "Webcomponent widget-textbox following open-wc recommendations",
"license": "MIT",
"author": "widget-textbox",
"version": "1.1.9",
"engines": {
"node": ">=24.9.0",
"npm": ">=10.0.2"
},
"type": "module",
"main": "dist/widget-textbox.js",
"types": "dist/src/widget-textbox.d.ts",
"files": [
"dist",
"src",
"thumbnail.png"
],
"scripts": {
"analyze": "cem analyze --litelement",
"start": "concurrently -k -r \"npm run watch\" \"wds\"",
"build": "rollup -c rollup.config.js",
"watch": "rollup -w -c rollup.config.js",
"link": "npm link && cd ../RESWARM/frontend && npm link @record-evolution/widget-textbox",
"unlink": "npm unlink --global && cd ../RESWARM/frontend && npm unlink @record-evolution/widget-textbox && npm i @record-evolution/widget-textbox",
"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.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.3",
"@web/dev-server": "^0.4.6",
"concurrently": "^9.1.2",
"json-schema-to-typescript": "^15.0.4",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RecordEvolution/widget-textbox.git"
},
"keywords": [
"widget",
"textbox"
],
"bugs": {
"url": "https://github.com/RecordEvolution/widget-textbox/issues"
},
"homepage": "https://github.com/RecordEvolution/widget-textbox#readme"
}