-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.73 KB
/
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
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
{
"name": "@record-evolution/widget-value",
"description": "REWidget widget-value",
"license": "MIT",
"author": "widget-value",
"version": "1.1.6",
"engines": {
"node": "18.18.2",
"npm": ">=10.0.2"
},
"type": "module",
"main": "dist/widget-value.js",
"types": "dist/src/widget-value.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "cem analyze --litelement",
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"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-value",
"unlink": "npm unlink --global && cd ../RESWARM/frontend && npm unlink @record-evolution/widget-value && npm i @record-evolution/widget-value",
"types": "cat src/definition-schema.json | json2ts > src/definition-schema.d.ts",
"start:build": "npm run build && es-dev-server --root-dir dist --app-index index.html --compatibility none --open",
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
"format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
"release": "npm version patch --tag-version-prefix='' && git push && git push --tag"
},
"dependencies": {
"@material/web": "^2.2.0",
"lit": "^3.2.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@web/dev-server": "^0.4.6",
"concurrently": "^9.0.1",
"deepmerge": "^4.3.1",
"es-dev-server": "^2.1.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"json-schema-to-typescript": "^15.0.2",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RecordEvolution/widget-value.git"
},
"keywords": [
"widget",
"value"
],
"bugs": {
"url": "https://github.com/RecordEvolution/widget-value/issues"
},
"homepage": "https://github.com/RecordEvolution/widget-value#readme"
}