-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "crx-gcal-url-opener",
"type": "module",
"version": "1.2.0",
"description": "Chrome extension that automatically opens Google Calendar meet links and event URLs",
"workspaces": [
"./docs"
],
"scripts": {
"test:dev": "vitest",
"test": "vitest run",
"test:e2e": "playwright test --project=chromium",
"preversion": "node ./scripts/bump-manifest.cjs $npm_new_version && git add manifest.json",
"prebuild": "rm -rf dist dist.zip",
"build": "tsc && vite build",
"postbuild": "zip -r dist.zip dist",
"dev": "vite",
"preview": "vite preview",
"release": "git push origin --follow-tags main && gh release create v${npm_package_version} --generate-notes"
},
"repository": "Leko/crx-gcal-url-opener",
"author": "Leko <[email protected]>",
"license": "MIT",
"devDependencies": {
"@crxjs/vite-plugin": "^1.0.13",
"@playwright/test": "^1.30.0",
"@types/chrome": "^0.0.263",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.0",
"chrome-webstore-upload-cli": "^2.1.0",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@mui/lab": "^5.0.0-alpha.98",
"@mui/material": "^5.8.0",
"get-urls": "^11.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}