-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "@matchbook-lab/log-notifier",
"version": "1.0.0-rc.7",
"description": "Parse logs to show notifications.",
"main": "./dist/main.js",
"browser": "./dist/browser.js",
"types": "./dist/main.d.ts",
"files": [
"dist"
],
"exports": {
".": "./dist/main.js",
"./browser": "./dist/browser.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && npm run build:ts && npm run build:wp",
"build:ts": "tsc",
"build:wp": "npm run webpack",
"clean": "rimraf ./dist/",
"watch:ts": "tsc -w",
"watch:wp": "npm run webpack -- -w",
"webpack": "cross-env TS_NODE_PROJECT=\"tsconfig.web.json\" webpack",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatchbookLab/log-notifier.git"
},
"author": "MatchbookLab",
"license": "ISC",
"bugs": {
"url": "https://github.com/MatchbookLab/log-notifier/issues"
},
"homepage": "https://github.com/MatchbookLab/log-notifier#readme",
"dependencies": {
"chalk": "^4.1.1",
"core-js": "^3.14.0",
"node-notifier": "^10.0.0",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2",
"tail": "^2.2.2"
},
"devDependencies": {
"@types/node": "^15.12.1",
"@types/node-notifier": "^8.0.0",
"@types/tail": "^2.2.0",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
}
}