Skip to content

Commit 1f7835f

Browse files
committed
fix(ci): Correct Node version and add missing webview dependency
1 parent a83e1a9 commit 1f7835f

File tree

1 file changed

+103
-0
lines changed

1 file changed

+103
-0
lines changed
Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
{
2+
"name": "webview-ui",
3+
"version": "0.1.0",
4+
"private": true,
5+
"type": "module",
6+
"scripts": {
7+
"lint": "eslint src/**/*.ts src/**/*.tsx",
8+
"lint-fix": "eslint src/**/*.ts src/**/*.tsx --fix",
9+
"check-types": "tsc",
10+
"test": "jest -w=40%",
11+
"dev": "vite",
12+
"tsc": "tsc -b",
13+
"vite-build": "vite build",
14+
"build": "npm-run-all -p tsc vite-build",
15+
"preview": "vite preview",
16+
"storybook": "storybook dev -p 6006",
17+
"build-storybook": "storybook build",
18+
"clean": "rimraf build"
19+
},
20+
"dependencies": {
21+
"@radix-ui/react-alert-dialog": "^1.1.6",
22+
"@radix-ui/react-checkbox": "^1.1.5",
23+
"@radix-ui/react-collapsible": "^1.1.3",
24+
"@radix-ui/react-dialog": "^1.1.6",
25+
"@radix-ui/react-dropdown-menu": "^2.1.5",
26+
"@radix-ui/react-icons": "^1.3.2",
27+
"@radix-ui/react-popover": "^1.1.6",
28+
"@radix-ui/react-progress": "^1.1.2",
29+
"@radix-ui/react-select": "^2.1.6",
30+
"@radix-ui/react-separator": "^1.1.2",
31+
"@radix-ui/react-slider": "^1.2.3",
32+
"@radix-ui/react-slot": "^1.1.2",
33+
"@radix-ui/react-tooltip": "^1.1.8",
34+
"@tailwindcss/vite": "^4.0.0",
35+
"@tanstack/react-query": "^5.68.0",
36+
"@vscode/webview-ui-toolkit": "^1.4.0",
37+
"class-variance-authority": "^0.7.1",
38+
"clsx": "^2.1.1",
39+
"cmdk": "^1.0.0",
40+
"debounce": "^2.1.1",
41+
"fast-deep-equal": "^3.1.3",
42+
"fzf": "^0.5.2",
43+
"i18next": "^24.2.2",
44+
"i18next-http-backend": "^3.0.2",
45+
"knuth-shuffle-seeded": "^1.0.6",
46+
"lucide-react": "^0.475.0",
47+
"mermaid": "^11.4.1",
48+
"posthog-js": "^1.227.2",
49+
"react": "^18.3.1",
50+
"react-dom": "^18.3.1",
51+
"react-i18next": "^15.4.1",
52+
"react-markdown": "^9.0.3",
53+
"react-remark": "^2.1.0",
54+
"react-textarea-autosize": "^8.5.3",
55+
"react-use": "^17.5.1",
56+
"react-virtuoso": "^4.7.13",
57+
"rehype-highlight": "^7.0.0",
58+
"remark-gfm": "^4.0.1",
59+
"remove-markdown": "^0.6.0",
60+
"shell-quote": "^1.8.2",
61+
"styled-components": "^6.1.13",
62+
"tailwind-merge": "^2.6.0",
63+
"tailwindcss": "^4.0.0",
64+
"tailwindcss-animate": "^1.0.7",
65+
"vscrui": "^0.2.2",
66+
"zod": "^3.24.2",
67+
"date-fns": "^3.6.0"
68+
},
69+
"devDependencies": {
70+
"@storybook/addon-essentials": "^8.5.6",
71+
"@storybook/blocks": "^8.5.6",
72+
"@storybook/react": "^8.5.6",
73+
"@storybook/react-vite": "^8.5.6",
74+
"@testing-library/jest-dom": "^6.6.3",
75+
"@testing-library/react": "^16.2.0",
76+
"@testing-library/user-event": "^14.6.1",
77+
"@types/jest": "^27.5.2",
78+
"@types/node": "^18.0.0",
79+
"@types/react": "^18.3.18",
80+
"@types/react-dom": "^18.3.5",
81+
"@types/shell-quote": "^1.7.5",
82+
"@types/testing-library__jest-dom": "^5.14.5",
83+
"@types/vscode-webview": "^1.57.5",
84+
"@typescript-eslint/eslint-plugin": "^6.21.0",
85+
"@typescript-eslint/parser": "^6.21.0",
86+
"@vitejs/plugin-react": "^4.3.4",
87+
"eslint": "^8.57.0",
88+
"eslint-config-react-app": "^7.0.1",
89+
"eslint-plugin-react": "^7.33.2",
90+
"eslint-plugin-react-hooks": "^4.6.0",
91+
"eslint-plugin-storybook": "^0.11.2",
92+
"identity-obj-proxy": "^3.0.0",
93+
"jest": "^29.7.0",
94+
"jest-environment-jsdom": "^29.7.0",
95+
"jest-simple-dot-reporter": "^1.0.5",
96+
"shiki": "^2.3.2",
97+
"storybook": "^8.5.6",
98+
"storybook-dark-mode": "^4.0.2",
99+
"ts-jest": "^29.2.5",
100+
"typescript": "^5.4.5",
101+
"vite": "6.0.11"
102+
}
103+
}

0 commit comments

Comments
 (0)