-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.05 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "tsw",
"version": "0.3.0",
"displayName": "TSW",
"description": "Your tiny smart worker",
"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": {
"@ai-sdk/google": "^1.0.12",
"@ai-sdk/groq": "^1.0.7",
"@langchain/textsplitters": "^0.1.0",
"@neondatabase/serverless": "^0.10.1",
"@octokit/rest": "^21.1.0",
"@plasmohq/storage": "^1.12.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.3",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-toast": "^1.2.2",
"ai": "^4.1.1",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.35.3",
"framer-motion": "^11.11.1",
"html-escaper": "^3.0.3",
"html-to-image": "^1.11.11",
"js-base64": "^3.7.7",
"jspdf": "^2.5.2",
"lodash": "^4.17.21",
"lucide-react": "^0.441.0",
"marked": "^14.1.2",
"minisearch": "^7.1.1",
"next-themes": "^0.3.0",
"pako": "^2.1.0",
"plasmo": "0.89.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^6.26.2",
"turndown": "^7.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@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.237",
"@types/html-escaper": "^3.0.2",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.17.9",
"@types/node": "18.19.50",
"@types/pako": "^2.0.3",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"@types/turndown": "^5.0.5",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.26.2",
"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 - tiny smart worker",
"description": "Your tiny smart worker",
"version": "0.3.0",
"browser_specific_settings": {
"gecko": {
"id": "{cdcc0160-f0ca-4350-91a5-bf7c06b8f12e}"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["/src/css/global.css"],
"run_at": "document_start"
}
]
},
"packageManager": "pnpm@9.14.2+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}