-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.71 KB
/
package.json
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
{
"name": "glslutil",
"version": "1.0.0",
"homepage": "https://<username>.github.io/<repository-name>",
"scripts": {
"deploy": "gh-pages -d build"
}
}{
"name": "glslutil",
"version": "1.0.0",
"private": true,
"main": "main.js",
"scripts": {
"dev": "next dev -p 3014",
"build": "NODE_ENV=production next build",
"start": "next start -p 3014",
"lint": "next lint",
"clean": "rm -rf out main.js .next dist",
"electron-dev": "NODE_ENV=development concurrently \"npm run dev\" \"wait-on http://localhost:3014 && electron .\"",
"electron-pack": "npm run clean && NODE_ENV=production next build && tsc -p electron/tsconfig.electron.json && NODE_ENV=production electron-builder build --mac --dir && NODE_ENV=production electron-builder build --mac",
"electron-start": "tsc -p electron/tsconfig.electron.json && NODE_ENV=production electron ."
},
"build": {
"appId": "com.glslboi.app",
"productName": "GLSLBoi",
"extends": null,
"files": [
"main.js",
"out/**/*"
],
"extraResources": [
{
"from": "out/_next/static",
"to": "_next/static",
"filter": [
"**/*"
]
}
],
"directories": {
"output": "dist",
"buildResources": "resources"
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.developer-tools"
},
"asar": true,
"asarUnpack": [
"**/_next/static/**/*"
]
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slider": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.4",
"@react-three/fiber": "^8.17.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.469.0",
"next": "14.2.16",
"next-themes": "^0.4.4",
"react": "^18",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.171.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18",
"@types/three": "^0.171.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.0.1",
"concurrently": "^8.2.2",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"wait-on": "^7.2.0"
}
}