-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.67 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
{
"name": "verisum",
"title": "Verisum",
"version": "0.0.3",
"description": "Get concise, sourced answers from any website",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "vite build --watch --m development",
"build": "tsc && vite build",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"typecheck": "tsc --noEmit"
},
"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",
"@types/showdown": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"dotenv": "^16.4.5",
"eslint": "^9.38.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"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
}
}