-
-
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) · 946 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 946 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": "sentry-sdk-browser-extension",
"private": true,
"version": "0.0.2",
"type": "module",
"scripts": {
"compile": "tsc --noEmit",
"dev": "vite",
"build": "vite build",
"format": "prettier . --write",
"zip": "rm -rf extension && mkdir -p extension && zip -qq -r extension/chrome.zip dist",
"update-bundles": "tsx scripts/update-bundles.ts"
},
"devDependencies": {
"@types/webextension-polyfill": "^0.10.0",
"prettier": "^3.3.3",
"typescript": "^5.3.2",
"vite": "^5.0.0",
"vite-plugin-solid": "^2.10.2",
"vite-plugin-web-extension": "^4.0.0",
"webextension-polyfill": "^0.10.0"
},
"dependencies": {
"@sentry/browser": "^10.2.0",
"@sentry/core": "^10.2.0",
"@solidjs/router": "^0.14.3",
"@spotlightjs/overlay": "2.4.0-next.4",
"highlight.js": "^11.10.0",
"solid-js": "^1.8.21",
"tsx": "^4.19.0",
"vite-plugin-static-copy": "^1.0.6"
},
"volta": {
"node": "22.6.0",
"yarn": "4.4.0"
}
}