-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.22 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.22 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
{
"name": "@omicronenergy/oscd-background-editv1",
"version": "0.0.6",
"description": "OpenSCD background Plugin for supporting Edit V1 events (oscd-edit). This provides backward compatibility for plugins still relying on Edit V1 events in OpenSCD.",
"type": "module",
"exports": {
".": "./dist/oscd-background-editv1.js",
"./oscd-background-editv1.js": "./dist/oscd-background-editv1.js"
},
"files": [
"/dist/",
"!/dist/*.spec.*",
"!/dist/*.test.*"
],
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix",
"analyze": "cem analyze --litelement",
"copy-demo": "cp -r ./demo ./dist/",
"start": "npm run build && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
"start:bundle": "npm run bundle && concurrently -k -r \"rollup -c rollup.config.js --watch\" \"wds --open dist/demo/index.html --watch --config ./web-dev-server.bundle.config.js\"",
"build": "rimraf dist && tsc && npm run analyze -- --exclude dist && npm run copy-demo",
"bundle": "rimraf dist && rollup -c rollup.config.js",
"test": "tsc && wtr --coverage",
"test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OMICRONEnergyOSS/oscd-background-editv1.git"
},
"bugs": {
"url": "https://github.com/OMICRONEnergyOSS/oscd-background-editv1/issues"
},
"homepage": "https://openscd.org",
"keywords": [
"OpenSCD",
"iec81650"
],
"author": "OMICRON Electronics GmbH",
"license": "Apache-2.0",
"dependencies": {
"@omicronenergy/oscd-api": "^0.1.1",
"@omicronenergy/oscd-editor": "^1.5.0",
"@omicronenergy/oscd-shell": "^0.0.7",
"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",
"@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/rollup-plugin-html": "^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-wc": "^3.0.1",
"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",
"prettier --write",
"eslint"
]
}
}