-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.05 KB
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
{
"name": "stack-sift",
"displayName": "Stack Sift",
"version": "0.1.0",
"description": "Triage Sentry issues locally: classify errors, ML insights, and sidebar on sentry.io pages.",
"author": "Stack Sift Contributors",
"license": "MIT",
"homepage": "https://github.com/EduardoDePatta/stack-sift",
"repository": {
"type": "git",
"url": "https://github.com/EduardoDePatta/stack-sift.git"
},
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@tensorflow/tfjs": "^4.22.0",
"plasmo": "^0.90.5",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/chrome": "^0.0.318",
"@types/jsdom": "^21.1.7",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"jsdom": "^26.0.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"manifest": {
"permissions": [
"storage"
],
"host_permissions": [
"https://*.sentry.io/*"
]
}
}