-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
105 lines (105 loc) · 3.44 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "fuji-web",
"version": "2.2.0",
"description": "A tool that redefines web interaction, making complex online tasks as simple as uttering a single command.",
"repository": {
"type": "git",
"url": "https://github.com/normal-computing/fuji-web"
},
"scripts": {
"build": "tsc --noEmit && vite build",
"build:lib": "rollup --config rollup.lib.config.js && cp package.lib.json dist-lib/package.json",
"build:firefox": "tsc --noEmit && cross-env __FIREFOX__=true vite build",
"build:watch": "cross-env __DEV__=true vite build -w --mode development",
"build:firefox:watch": "cross-env __DEV__=true __FIREFOX__=true vite build -w --mode development",
"build:hmr": "rollup --config utils/reload/rollup.config.mjs",
"wss": "node utils/reload/initReloadServer.js",
"dev": "pnpm build:hmr && (run-p wss build:watch)",
"dev:firefox": "pnpm build:hmr && (run-p wss build:firefox:watch)",
"test": "exit 0",
"commitlint": "commitlint --edit",
"lint": "eslint src --ext .ts",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier . --write",
"prepare": "husky install"
},
"type": "module",
"dependencies": {
"@anthropic-ai/sdk": "^0.19.1",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@google/generative-ai": "^0.19.0",
"accname": "^1.1.0",
"construct-style-sheets-polyfill": "3.1.0",
"formik": "^2.4.5",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"openai": "^4.60.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.3.0",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.4.1",
"react-use": "^17.4.0",
"tailwindcss": "^3.4.4",
"webextension-polyfill": "0.10.0",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "18.1.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-typescript": "11.1.6",
"@testing-library/react": "14.0.0",
"@types/chrome": "0.0.251",
"@types/dom-speech-recognition": "^0.0.4",
"@types/jest": "29.5.7",
"@types/lodash": "^4.17.7",
"@types/node": "20.11.24",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.22",
"@types/ws": "8.5.10",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.9.1",
"@vitejs/plugin-react": "4.2.1",
"autoprefixer": "^10.4.16",
"chokidar": "3.6.0",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.0",
"fs-extra": "11.1.1",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.7",
"npm-run-all": "4.1.5",
"postcss": "^8.4.38",
"prettier": "3.2.5",
"rollup": "4.17.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"sass": "1.72.0",
"ts-jest": "29.2.5",
"tslib": "2.6.2",
"typescript": "5.5.3",
"vite": "5.2.14",
"ws": "8.18.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "pnpm@8.9.2"
}