-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.98 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
{
"name": "fractr",
"version": "0.0.0",
"private": true,
"description": "Ultra-performant 3D fractal explorer powered by WebGPU",
"keywords": [
"3d",
"fractal",
"mandelbulb",
"ray-marching",
"webgpu"
],
"bugs": "https://github.com/Shinigami92/Fractr/issues",
"license": "MIT",
"author": {
"name": "Christopher Quadflieg",
"email": "chrissi92@hotmail.de",
"url": "https://github.com/Shinigami92"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shinigami92/Fractr.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/Shinigami92"
},
{
"type": "paypal",
"url": "https://www.paypal.com/donate?hosted_button_id=L7GY729FBKTZY"
}
],
"type": "module",
"scripts": {
"clean": "git clean -fdx --exclude .claude",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint",
"ts-check": "run-s ts-check:app ts-check:node",
"ts-check:app": "vue-tsc --noEmit -p tsconfig.app.json",
"ts-check:node": "tsc --noEmit -p tsconfig.node.json",
"generate-previews": "tsx scripts/generate-previews.ts",
"preflight": "pnpm install && run-s format lint ts-check build"
},
"dependencies": {
"@vueuse/core": "14.3.0",
"pinia": "3.0.4",
"vue": "3.5.33"
},
"devDependencies": {
"@iconify-json/lucide": "1.2.105",
"@playwright/test": "1.59.1",
"@tailwindcss/vite": "4.2.4",
"@types/node": "25.6.0",
"@vitejs/plugin-basic-ssl": "2.3.0",
"@vitejs/plugin-vue": "6.0.6",
"@webgpu/types": "0.1.69",
"npm-run-all2": "8.0.4",
"oxfmt": "0.47.0",
"oxlint": "1.62.0",
"oxlint-tsgolint": "0.22.1",
"tailwindcss": "4.2.4",
"tsx": "4.21.0",
"typescript": "6.0.3",
"unplugin-icons": "23.0.1",
"vite": "8.0.10",
"vue-tsc": "3.2.7"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@10.33.2"
}