-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.97 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.97 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
{
"name": "dataconnect",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=20 <24"
},
"scripts": {
"dev": "vite",
"dev:app": "vite --port 5173 --strictPort",
"build": "tsc -b && vite build",
"prebuild:all": "node scripts/ensure-connectors.js && node scripts/ensure-playwright-runner.js && node scripts/ensure-personal-server.js",
"pretauri:dev": "npm run prebuild:all",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"typecheck": "tsc -b --noEmit",
"test": "npm run typecheck && vitest run",
"preview": "vite preview",
"tauri": "tauri",
"tauri:icon": "tauri icon ./public/data_connect_1024_1x.png",
"tauri:icon:refresh-cache": "sh -c 'tauri icon ./public/data_connect_1024_1x.png && rm -rf \"$HOME/Library/Caches/com.apple.iconservices\" \"$HOME/Library/Caches/com.apple.iconservices.store\" && (qlmanage -r cache || true) && (killall iconservicesagent || true) && (killall Dock || true) && (killall Finder || true)'",
"tauri:icon:rebuild": "sh -c 'tauri icon ./public/data_connect_1024_1x.png && npm run tauri:build && rm -rf \"$HOME/Library/Caches/com.apple.iconservices\" \"$HOME/Library/Caches/com.apple.iconservices.store\" && (qlmanage -r cache || true) && (killall iconservicesagent || true) && (killall Dock || true) && (killall Finder || true)'",
"tauri:dev": "node scripts/sync-connectors-dev.js && tauri dev",
"demo:chatgpt-endpoint": "sh -c 'PORT=${DATACONNECT_DEMO_PORT:-8787}; lsof -ti tcp:$PORT -sTCP:LISTEN | xargs kill -9 2>/dev/null || true; DATACONNECT_DEMO_PORT=$PORT node --watch scripts/demo-chatgpt-endpoint.mjs'",
"demo:chatgpt-endpoint:once": "sh -c 'PORT=${DATACONNECT_DEMO_PORT:-8787}; lsof -ti tcp:$PORT -sTCP:LISTEN | xargs kill -9 2>/dev/null || true; DATACONNECT_DEMO_PORT=$PORT node scripts/demo-chatgpt-endpoint.mjs'",
"tauri:build": "node scripts/build-prod.js",
"release:github": "node scripts/release-github.mjs",
"release:versions": "node scripts/release-github.mjs --show-versions",
"skills:sync": "node scripts/sync-skills.js",
"skills:watch": "node scripts/watch-skills.js",
"postinstall": "node scripts/sync-skills.js",
"fresh-start": "bash scripts/fresh-start.sh"
},
"dependencies": {
"@base-ui/react": "^1.1.0",
"@reduxjs/toolkit": "^2.11.2",
"@tabler/icons-react": "^3.36.1",
"@tauri-apps/api": "~2.10.1",
"@tauri-apps/cli": "~2.10.0",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-deep-link": "^2.4.7",
"@tauri-apps/plugin-http": "^2.5.6",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.4",
"@tauri-apps/plugin-updater": "^2.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"motion": "^12.29.2",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.12.0",
"shadcn": "^3.7.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"viem": "^2.45.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"happy-dom": "^20.6.1",
"jsdom": "^27.4.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vitest": "^4.0.18"
}
}