-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.01 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
{
"name": "chatgpt-wordsmith",
"displayName": "ChatGPT Wordsmith",
"private": true,
"version": "1.2.3",
"type": "module",
"author": "no one",
"description": "Prompt Codification and Visualization Tools - Replace ChatGPT's editors the Microsoft Monaco Editor.",
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"fmt": "prettier --write '**/*.{tsx,ts,json,css,scss,md}'",
"preview": "vite preview",
"bundle": "node zip.js",
"test": "jest"
},
"dependencies": {
"@eslint/eslintrc": "^3.1.0",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-switch": "^1.1.1",
"@types/lodash": "^4.17.10",
"@vitejs/plugin-react": "^4.3.2",
"@vitejs/plugin-react-swc": "^3.7.1",
"autoprefixer": "^10.4.20",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"lucide-react": "^0.412.0",
"monaco-editor": "^0.45.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.2",
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.12.0",
"@types/chrome": "^0.0.266",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"gulp": "^5.0.0",
"gulp-zip": "^6.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.3",
"typescript-eslint": "^7.18.0",
"vite": "latest",
"vite-plugin-string": "^1.2.3"
}
}