-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 2.11 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
{
"private": true,
"name": "ai-text-assistant-utools",
"version": "1.0.0",
"type": "module",
"description": "ai text assistant",
"main": "index.js",
"scripts": {
"dev": "vite",
"build_utools": "tsc && vite build -m production_utools && pnpm run update-version",
"preview": "vite preview",
"fix": "eslint --fix --quiet .",
"update-version": "mkdir -p dist && echo `date +%s` > dist/version.txt"
},
"author": "IndieKKY",
"license": "MIT",
"dependencies": {
"@kky002/kky-hooks": "^1.2.2",
"@kky002/kky-util": "^1.4.2",
"@microsoft/fetch-event-source": "^2.0.1",
"@reduxjs/toolkit": "^1.8.5",
"@tippyjs/react": "^4.2.6",
"ahooks": "^3.7.1",
"classnames": "^2.3.2",
"daisyui": "^2.40.1",
"less": "^4.1.3",
"lodash-es": "^4.17.21",
"pako": "^2.1.0",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-markdown": "^8.0.3",
"react-redux": "^8.0.2",
"react-slider": "^2.0.4",
"react-toastify": "^9.0.8",
"remark-gfm": "^3.0.1",
"tippy.js": "^6.3.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"@types/chrome": "^0.0.196",
"@types/lodash-es": "^4.17.6",
"@types/pako": "^2.0.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/react-slider": "^1.3.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.13",
"eslint": "8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.19",
"rollup-plugin-visualizer": "^5.8.3",
"tailwindcss": "^3.2.4",
"typescript": "^4.8.3",
"utools-api-types": "^3.0.0",
"vite": "^3.1.1"
}
}