-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.39 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
{
"name": "sloth-search",
"version": "0.1.1",
"description": "A browser extension that provides AI-powered semantic search over web pages.",
"author": {
"name": "Michael Barlow"
},
"scripts": {
"build": "vite build",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"typewatch": "tsc --noEmit --watch",
"copyright-check": "copyright-header --copyrightHolder \"Michael Barlow\" --include \"src\"",
"copyright-fix": "copyright-header --copyrightHolder \"Michael Barlow\" --include \"src\" --fix"
},
"type": "module",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.3",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.6",
"langchain": "^0.0.96",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@types/webextension-polyfill": "^0.10.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"copyright-header": "^0.4.6",
"eslint": "^8.43.0",
"eslint-plugin-react": "^7.32.2",
"pre-commit": "^1.2.2",
"typescript": "5.0.4",
"vite": "^4.3.8",
"vite-tsconfig-paths": "^4.2.0"
},
"pre-commit": [
"copyright-check",
"typecheck",
"lint"
]
}