This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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
{
"name": "ketch-in-chrome-extension",
"version": "0.0.1-beta.1",
"description": "This is a Chrome Extension. Based on Google Meet information, Organizer and Attendee are separated so that they can communicate with the server and draw the screen.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ketch-in/ketch-in-chrome-extension"
},
"scripts": {
"preclean": "npx prettier --write .",
"clean": "rm -rf ./dist",
"build:dev": "webpack --env mode=development",
"build:prod": "webpack --env mode=production",
"build:watch": "webpack --env mode=development -w",
"build": "npm run build:prod",
"pbjs": "pbjs -t static-module -w es6 -o src/meet/message.js src/meet/message.proto",
"pbts": "pbts -o src/meet/message.d.ts src/meet/message.js"
},
"keywords": [
"Chrome Extension"
],
"author": "Sotaneum",
"license": "MIT",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@types/chrome": "^0.0.188",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"dotenv-webpack": "^7.1.0",
"eslint": "^8.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"mini-css-extract-plugin": "^2.6.0",
"prettier": "2.6.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.4.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"protobufjs": "^6.11.2",
"rtcmulticonnection": "^3.7.1",
"socket.io-client": "^4.4.1"
},
"workspaces": [
"packages/components"
]
}