-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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": "palia-clock",
"private": true,
"version": "0.1.0",
"license": "MIT",
"description": "This is an experimental little tool for players of the game Palia. This project is neither affiliated with nor officially supported by the creators of Palia.",
"homepage": "https://sharkythewhite.github.io/palia-clock",
"repository": {
"type": "git",
"url": "https://github.com/SharkyTheWhite/palia-clock.git"
},
"author": {
"name": "SharkyTheWhite",
"email": "[email protected]",
"url": "http://sharkythewhite.eu"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"pettier": "^1.1.0",
"sass": "^1.66.1",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-eslint": "^1.8.1",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.8.5"
}
}