-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.42 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
{
"name": "ask-my-website",
"title": "Ask my Website",
"version": "0.0.3",
"description": "A Chrome extension that uses PromptAPI and vector embeddings to help users quickly find answers about the current website's content.",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "vite build --watch --m development",
"build": "tsc && vite build"
},
"author": "Nico Martin <nico@sayhello.ch>",
"license": "MIT",
"devDependencies": {
"@nico-martin/crxjs-vite-plugin": "^2.0.1-beta.3",
"@preact/preset-vite": "^2.9.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/chrome": "^0.0.287",
"@types/dom-speech-recognition": "^0.0.4",
"dotenv": "^16.4.5",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"vite": "^6.0.0"
},
"dependencies": {
"@huggingface/transformers": "^3.0.2",
"@types/dom-chromium-ai": "^0.0.4",
"lucide-react": "^0.462.0",
"preact": "^10.25.0",
"showdown": "^2.1.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "h"
}
],
"@babel/plugin-transform-runtime"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"importOrder": [
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
}
}