-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 5.08 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 5.08 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"homepage": "https://xdnw.github.io/lc_cmd_react",
"name": "lc_cmd_react",
"private": true,
"version": "0.0.0",
"type": "module",
"sideEffects": false,
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"dev": "vite --mode dev",
"dev-compiler": "cross-env REACT_COMPILER=true vite --mode dev",
"dev-test": "vite --mode dev-test",
"build": "vite build --mode main",
"build-test": "vite build --mode test",
"build-dev-compile": "cross-env REACT_COMPILER=true vite build --mode dev",
"build-dev": "vite build --mode dev",
"build-dev-test": "vite build --mode dev-test",
"lint": "eslint . --max-warnings 0 --cache --quiet",
"preview": "vite preview --port 5173",
"preview-dev-compile": "npm run build-dev-compile && vite preview --port 5173",
"fix-imports": "cross-env FIX_IMPORTS=true eslint --fix \"src/**/*.{ts,tsx}\"",
"verify-emoji": "node scripts/verify-emoji.cjs",
"list-commands": "node ./scripts/list-commands.cjs",
"command-args": "node ./scripts/command-args.cjs",
"list-placeholders": "node ./scripts/list-placeholders.cjs",
"placeholder-args": "node ./scripts/placeholder-args.cjs",
"list-placeholder-types": "node ./scripts/list-placeholder-types.cjs",
"typecheck": "tsc --noEmit",
"test": "vitest run --dir src",
"test:inputs": "vitest run src/components/cmd/ArgInput.examples.test.tsx",
"test:inputs:watch": "vitest src/components/cmd/ArgInput.examples.test.tsx",
"bench:markup": "vitest bench --run src/components/ui/MarkupRenderer.bench.tsx",
"bench:placeholder": "vitest bench --run src/components/cmd/expression/expressionAnalysis.bench.ts src/components/cmd/PlaceholderSuggestionPanel.bench.ts src/components/cmd/PlaceholderExpressionInput.bench.tsx src/components/cmd/CommandDialogForm.bench.tsx",
"bench:cmd": "vitest bench --run src/components/cmd/expression/expressionAnalysis.bench.ts src/components/cmd/PlaceholderSuggestionPanel.bench.ts src/components/cmd/PlaceholderExpressionInput.bench.tsx src/components/cmd/CommandDialogForm.bench.tsx src/components/cmd/ListComponent.bench.tsx src/components/cmd/QueryComponent.bench.tsx src/components/cmd/CommandComponent.bench.tsx"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@tanstack/query-sync-storage-persister": "^5.69.0",
"@tanstack/react-query": "^5.69.0",
"@tanstack/react-query-persist-client": "^5.69.0",
"chart.js": "^4.5.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.2.4",
"input-otp": "^1.4.2",
"js-cookie": "^3.0.5",
"lucide-react": "^0.575.0",
"msgpackr": "^1.11.8",
"react": "^19.2.4",
"react-autocomplete-input": "^1.0.31",
"react-chartjs-2": "^5.3.1",
"react-data-grid": "^7.0.0-beta.59",
"react-dom": "^19.2.4",
"react-error-boundary": "^6.1.1",
"react-ga4": "^2.1.0",
"react-router-dom": "^7.13.0",
"react-select": "^5.10.2",
"react-virtuoso": "^4.18.1",
"suneditor": "^2.47.8",
"suneditor-react": "^3.6.1",
"use-debounce": "^10.1.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/compat": "^1.2.8",
"@eslint/js": "^9.22.0",
"@swc/core": "^1.15.11",
"@tailwindcss/vite": "^4.2.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.2.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.19.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-highlight": "^0.12.8",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/webscopeio__react-textarea-autocomplete": "^4.7.5",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitejs/plugin-react-swc": "^4.2.3",
"babel-plugin-react-compiler": "^19.0.0-beta-3229e95-20250315",
"cross-env": "^7.0.3",
"depcheck": "^1.4.7",
"eslint": "^9.22.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "^19.0.0-beta-3229e95-20250315",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-perf": "^3.3.3",
"eslint-plugin-sonarjs": "^3.0.2",
"eslint-plugin-unused-imports": "^4.1.4",
"gh-pages": "^6.3.0",
"install": "^0.13.0",
"jiti": "^2.6.1",
"jsdom": "^28.1.0",
"npm": "^11.2.0",
"postcss": "^8.5.3",
"prop-types": "^15.8.1",
"rollup-plugin-visualizer": "^7.0.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.2.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-static-copy": "^3.2.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18",
"workbox-window": "^7.3.0"
}
}