forked from Yagasaki7K/website-essentials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.31 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.31 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
{
"name": "essentials",
"description": "Essentials softwares for your computer",
"version": "25.07",
"private": true,
"main": "electron/main.js",
"homepage": "https://github.com/Yagasaki7K/website-essentials",
"author": {
"name": "Anderson Marlon",
"email": "anderson18.marlon@gmail.com"
},
"bugs": {
"url": "https://github.com/Yagasaki7K/website-essentials/issues",
"email": "anderson18.marlon@gmail.com"
},
"scripts": {
"dev": "next dev",
"vercel": "next build",
"start": "next start",
"lint": "next lint",
"create:mylint": "bunx --bun biome init && bun mylint",
"mylint": "bunx biome format --write",
"next:update": "bun add next@latest react@latest react-dom@latest eslint-config-next@latest",
"commit": "git pull && bun update && bun run vercel && bun mylint && read -p 'Descriptions Commit: ' message && git add . && echo -n \"$message - \" && node getTime.js | xargs -I {} git commit -m \"$message - {}\" && git push",
"clean": "rm -rf node_modules && bun install"
},
"dependencies": {
"caniuse-lite": "^1.0.30001759",
"concurrently": "^8.2.2",
"eslint-config-next": "^16.0.7",
"next": "^16.0.7",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sonner": "^1.7.4",
"styled-components": "^6.1.19",
"wait-on": "^7.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8"
}
}