forked from OpenEnergyTools/scl-template-update
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.8 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.8 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@omicronenergy/oscd-editor-template-update",
"version": "0.0.0",
"description": "OpenSCD Menu Plugin for loading IEC 61850 SCL files into OpenSCD.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/OMICRONEnergyOSS/oscd-editor-template-update.git"
},
"bugs": {
"url": "https://github.com/OMICRONEnergyOSS/oscd-editor-template-update/issues"
},
"homepage": "https://openscd.org",
"keywords": [
"OpenSCD",
"iec81650"
],
"contributors": [
"Jakob Vogelsang",
"OMICRON Electronics GmbH"
],
"license": "Apache-2.0",
"exports": {
".": "./dist/oscd-editor-template-update.js",
"./oscd-editor-template-update.js": "./dist/oscd-editor-template-update.js"
},
"files": [
"/dist/",
"!/dist/*.spec.*",
"!/dist/*.test.*"
],
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix",
"analyze": "cem analyze --litelement --exclude demo/* --exclude dist/* --exclude *.spec.ts --exclude *.test.ts --exclude coverage/*",
"copy-demo": "cp -r ./demo ./dist/",
"start": "npm run build && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds --node-resolve \"",
"start:bundle": "npm run bundle && concurrently -k -r \"rollup -c rollup.config.js --watch\" \"wds --watch \"",
"build": "rimraf dist && mkdir dist && npm run copy-demo && npm run analyze -- --exclude dist && tsc ",
"bundle": "rimraf dist && rollup -c rollup.config.js",
"test": "npm run build && wtr --coverage",
"test:watch": "npm run build && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"",
"deploy": "npm run bundle && gh-pages --dist 'dist'",
"prepare": "husky"
},
"dependencies": {
"@omicronenergy/oscd-api": "^0.1.1",
"@omicronenergy/oscd-background-editv1": "^0.0.6",
"@omicronenergy/oscd-menu-open": "^0.0.6",
"@omicronenergy/oscd-menu-save": "^0.0.1",
"@omicronenergy/oscd-shell": "^0.0.8",
"@open-wc/scoped-elements": "^3.0.6",
"@openenergytools/scl-lib": "^1.7.0",
"@openenergytools/tree-grid": "^1.1.0",
"@scopedelement/material-web": "^3.12.0",
"lit": "^3.3.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@custom-elements-manifest/analyzer": "^0.10.4",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.31.0",
"@omicronenergy/oscd-editor": "^1.5.0",
"@open-wc/eslint-config": "^13.0.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"@web/dev-server": "^0.4.6",
"@web/dev-server-polyfill": "^1.0.6",
"@web/rollup-plugin-html": "^2.3.0",
"@web/rollup-plugin-import-meta-assets": "^2.3.0",
"@web/test-runner": "0.20.2",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.1",
"concurrently": "^9.2.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-html": "^8.1.3",
"eslint-plugin-lit": "^2.1.1",
"eslint-plugin-lit-a11y": "^5.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-wc": "^3.0.1",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.45.0",
"rollup-plugin-copy": "^3.5.0",
"sinon": "^21.0.0",
"typedoc": "^0.28.7",
"typescript": "^5.8.3"
},
"customElements": "custom-elements.json",
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"eslint"
]
}
}