-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "celeria",
"description": "Celeria is a software that read, manage and download musics.",
"private": true,
"version": "0.1.0",
"license": "Mozilla Public License 2.0",
"type": "commonjs",
"authors": [
{
"name": "Asthowen",
"email": "[email protected]",
"url": "https://asthowen.fr"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Asthowen/CeleriaMusicPlayer.git"
},
"scripts": {
"lint": "eslint src/ --ext .ts,.tsx --fix",
"tailwindcss": "pnpm exec tailwindcss build -i src/css/index.css -o src/css/tailwind.css --watch",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"bump-dependencies": "ncu -u && pnpm i"
},
"dependencies": {
"@tauri-apps/api": "^1.2.0",
"@tauri-apps/cli": "^1.2.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.6",
"typescript": "^4.9.5",
"vite": "^4.1.1"
}
}