-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (78 loc) · 2.65 KB
/
package.json
File metadata and controls
79 lines (78 loc) · 2.65 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
{
"name": "@kortexa-ai/worker17",
"version": "0.1.0",
"description": "Worker17",
"copyright": "Copyright © 2025 kortexa.ai",
"author": {
"name": "Franci Penov",
"email": "francip@kortexa.ai",
"url": "https://kortexa.ai"
},
"keywords": [],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/kortexa-ai/worker17.git"
},
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"clean": "rm -rf dist dev-dist lib build coverage data",
"lint": "eslint . --report-unused-disable-directives --no-error-on-unmatched-pattern",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc -p tsconfig.app.json --noEmit",
"build": "vite build --mode production",
"build:nomin": "vite build --mode production --minify false --sourcemap inline",
"validate": "npm run typecheck && npm run lint",
"preview": "vite preview",
"update": "git pull && npm install && npm install && npm run build && git add -A && git commit -m \"Deps version bump\" && git push",
"deploy": "git pull && rm -rf node_modules && rm package-lock.json && npm run clean && npm install && npm run build && git add -A && git commit -m \"Fixing deps install\" || true && git push ",
"postinstall": "tsx scripts/postinstall.ts",
"prebuild": "tsx scripts/prebuild.ts"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-slot": "^1.2.4",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@react-three/rapier": "^2.2.0",
"@react-three/xr": "^6.6.29",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"lucide-react": "^0.563.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.4.0",
"three": "^0.182.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.2.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.182.0",
"@vitejs/plugin-react-swc": "^4.2.2",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"npm-check-updates": "^19.3.2",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vite-plugin-glsl": "^1.5.5",
"vite-plugin-mkcert": "^1.17.9"
}
}