-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "config-ai",
"displayName": "Config ai",
"version": "0.0.1",
"description": "A simple configuration assistant for helping with PII/PCI remediation",
"author": "zmessinger@quantummetric.com",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"build-css": "tailwindcss build src/style.css -o build/chrome-mv3-dev/dist/output.css"
},
"dependencies": {
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.1.3",
"@langchain/anthropic": "^0.1.14",
"@langchain/core": "^0.1.60",
"@langchain/google-genai": "^0.0.11",
"@langchain/openai": "^0.0.28",
"@medv/finder": "^3.2.0",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/redux-persist": "^6.1.0",
"@plasmohq/storage": "^1.10.0",
"@reduxjs/toolkit": "^2.2.3",
"fuse.js": "^7.0.0",
"langchain": "^0.1.33",
"plasmo": "0.85.2",
"prompts": "link:@langchain/core/prompts",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^9.1.1",
"react-router-dom": "^6.23.0",
"react-spinners": "^0.13.8",
"redux-persist-webextension-storage": "^1.0.2",
"tailwindcss": "3.4.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.258",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"autoprefixer": "^10.4.19",
"postcss": "8.4.33",
"prettier": "3.2.4",
"typescript": "5.3.3"
},
"manifest": {
"manifest_version": 3,
"permissions": [
"activeTab"
],
"web_accessible_resources": [
{
"resources": [
"scripts/routeHandlerScript.js"
],
"matches": [
"<all_urls>"
]
}
]
}
}