-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 977 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 977 Bytes
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
{
"name": "gmeetlog",
"version": "1.4.0",
"description": "A Chrome extension that logs the details of your Google Meet meetings.",
"scripts": {
"test": "jest --config jest.config.ts",
"build": "parcel build src/background.ts src/content.ts src/popup.ts --dist-dir dist",
"dev": "parcel src/background.ts src/content.ts src/popup.ts --dist-dir dist"
},
"staticFiles": [
{
"staticPath": "images",
"staticOutPath": "images"
},
{
"staticPath": "manifest.json"
},
{
"staticPath": "popup.html"
}
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@parcel/config-webextension": "^2.9.3",
"@types/chrome": "^0.0.239",
"@types/jest": "^29.5.2",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"parcel": "^2.9.3",
"parcel-reporter-static-files-copy": "^1.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}