-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.43 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.43 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
{
"name": "pytoexe",
"version": "0.1.0",
"description": "Free, open-source online tool to convert Python files to Windows executable files using GitHub Actions",
"private": false,
"keywords": [
"python",
"exe",
"converter",
"github-actions",
"pyinstaller",
"nextjs",
"react",
"typescript",
"open-source",
"free",
"online-tool"
],
"author": {
"name": "SymphonyIceAttack",
"email": "your.email@example.com",
"url": "https://pytoexe.top"
},
"homepage": "https://pytoexe.top",
"repository": {
"type": "git",
"url": "https://github.com/SymphonyIceAttack/pytoexe.git"
},
"bugs": {
"url": "https://github.com/SymphonyIceAttack/pytoexe/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:worker": "opennextjs-cloudflare build",
"start": "next start",
"lint": "biome check",
"lint:fix": "biome check --apply",
"format": "biome format --write",
"format:check": "biome format",
"type-check": "tsc --noEmit",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare deploy",
"upload": "opennextjs-cloudflare build && opennextjs-cloudflare upload",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"@opennextjs/cloudflare": "^1.14.3",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"html2canvas": "^1.4.1",
"lucide-react": "^0.553.0",
"next": "16.0.10",
"next-themes": "^0.4.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "^20.19.25",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"wrangler": "4.50.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/SymphonyIceAttack"
}
}