-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 936 Bytes
/
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
{
"name": "@cicciosgamino/web-socket",
"version": "7.0.0",
"description": "Simple web-socket debug customElement",
"main": "web-socket.js",
"type": "module",
"module": "web-socket.js",
"scripts": {
"dev": "web-dev-server --node-resolve --app-index examples/index.html --watch --open",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CICCIOSGAMINO/web-socket.git"
},
"keywords": [
"WebSocket",
"WebComponent",
"CustomElement",
"Lit"
],
"author": "@cicciosgamino",
"license": "GPL-3.0",
"private": false,
"bugs": {
"url": "https://github.com/CICCIOSGAMINO/web-socket/issues"
},
"homepage": "https://github.com/CICCIOSGAMINO/web-socket#readme",
"dependencies": {
"lit": "*"
},
"devDependencies": {
"@web/dev-server": "^0.3.0"
},
"directories": {
"example": "examples"
}
}