-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 2.29 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
80
81
82
83
{
"name": "ask-my-pdf",
"version": "0.4.5",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"generate-pwa-assets": "pwa-assets-generator"
},
"author": "Nico Martin <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:nico-martin/wp-ai-assistant.git"
},
"license": "MIT",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.11.30",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"@types/showdown": "^2.0.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-react": "^4.2.1",
"@webgpu/types": "^0.1.40",
"autoprefixer": "^10.4.19",
"dotenv": "^16.4.5",
"esbuild": "^0.20.2",
"eslint": "^9.2.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"postcss-mixins": "^10.0.0",
"postcss-nesting": "^12.1.0",
"postcss-preset-env": "^9.5.2",
"prettier": "^3.2.5",
"rollup-plugin-node-builtins": "^2.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-html-config": "^1.0.11",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2"
},
"dependencies": {
"@huggingface/transformers": "^3.0.2",
"@mlc-ai/web-llm": "^0.2.76",
"@mlc-ai/web-tokenizers": "^0.1.2",
"@nico-martin/tvmjs": "^0.22.0-dev0",
"js-cookie": "^3.0.5",
"pdfjs-dist": "^4.2.67",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.5",
"showdown": "^2.1.0",
"uuid": "^9.0.1",
"vite-plugin-pwa": "^0.20.0"
},
"browserslist": [
"> 1%"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"importOrder": [
"<THIRD_PARTY_MODULES>",
"^@theme/(.*)$",
"^@app/(.*)$",
"^@utils/(.*)$",
"^@store/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"type": "module"
}