-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.47 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "tsw-nano",
"version": "0.1.0",
"description": "Your tiny smart worker powered by Gemini Nano",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"build:firefox": "plasmo build --target=firefox-mv3 --zip",
"test": "jest",
"lint": "biome check",
"fix": "biome check --write",
"format": "biome format --write",
"removeUnused": "biome lint --fix --only=lint/correctness/noUnusedImports",
"prepare": "husky"
},
"dependencies": {
"@langchain/textsplitters": "^0.1.0",
"@plasmohq/storage": "^1.12.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-toast": "^1.2.2",
"ai": "^3.4.16",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.11.1",
"html-escaper": "^3.0.3",
"lodash": "^4.17.21",
"lucide-react": "^0.441.0",
"marked": "^14.1.2",
"next-themes": "^0.3.0",
"plasmo": "0.89.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@radix-ui/react-menubar": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@types/chrome": "0.0.283",
"@types/dom-chromium-ai": "^0.0.2",
"@types/html-escaper": "^3.0.2",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.17.9",
"@types/node": "18.19.50",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"autoprefixer": "^10.4.20",
"husky": "^9.1.6",
"postcss": "^8.4.47",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.11",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.1",
"typescript": "5.5.4"
},
"manifest": {
"permissions": ["tabs", "storage", "activeTab"],
"background": {
"service_worker": "background.ts"
},
"name": "tsw-nano - tiny smart worker powered by Gemini Nano",
"description": "Your tiny smart worker powered by Gemini Nano",
"version": "0.1.0",
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["/src/css/global.css"],
"run_at": "document_start"
}
]
},
"packageManager": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}