-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 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
{
"name": "comcat",
"version": "1.2.1",
"description": "Share single connection between multiple browser tabs/windows and more.",
"repository": {
"type": "git",
"url": "https://github.com/afterwind-io/comcat.git"
},
"author": "AfterWind <spmushroom@hotmail.com>",
"homepage": "https://github.com/afterwind-io/comcat",
"keywords": [
"share",
"browser",
"connect",
"connection",
"multi",
"multiple",
"tab",
"tabs",
"window",
"windows"
],
"files": [
"dist/"
],
"main": "dist/comcat.js",
"unpkg": "dist/comcat.js",
"module": "dist/comcat.es.js",
"devDependencies": {
"@microsoft/api-extractor": "^7.13.4",
"http-server": "^0.12.3",
"rollup": "^2.38.3",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-web-worker-loader": "^1.6.1",
"ts-loader": "^8.0.18",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"scripts": {
"dev": "rollup -c build/dev.js",
"prepublishOnly": "rm -rf ./dist&&npm run prod&&npm run typing",
"prod": "rollup -c build/prod.js",
"server": "http-server dev -p 9001 -c-1",
"typing": "tsc --emitDeclarationOnly&&api-extractor run --local --verbose"
},
"license": "MIT"
}