Skip to content

Commit 901b82b

Browse files
committed
prettier
1 parent 66cb143 commit 901b82b

File tree

3 files changed

+23
-17
lines changed

3 files changed

+23
-17
lines changed

.prettierrc.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"semi": false,
3+
"useTabs": true
4+
}

bun.lockb

352 Bytes
Binary file not shown.

package.json

+19-17
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
{
2-
"name": "maver",
3-
"private": true,
4-
"version": "0.0.0",
5-
"type": "module",
6-
"scripts": {
7-
"dev": "vite",
8-
"build": "tsc && vite build",
9-
"preview": "vite preview"
10-
},
11-
"devDependencies": {
12-
"@types/three": "^0.167.1",
13-
"typescript": "^5.5.3",
14-
"vite": "^5.4.0"
15-
},
16-
"dependencies": {
17-
"three": "^0.167.1"
18-
}
2+
"name": "maver",
3+
"private": true,
4+
"version": "0.0.0",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite",
8+
"build": "tsc && vite build",
9+
"preview": "vite preview",
10+
"format": "prettier --write ."
11+
},
12+
"devDependencies": {
13+
"@types/three": "^0.167.1",
14+
"prettier": "^3.3.3",
15+
"typescript": "^5.5.3",
16+
"vite": "^5.4.0"
17+
},
18+
"dependencies": {
19+
"three": "^0.167.1"
20+
}
1921
}

0 commit comments

Comments
 (0)