forked from itxshakil/vue-calculator-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "vcalc",
"version": "0.9.0",
"private": true,
"type": "module",
"description": "Customizable Vuejs Calculator for quick calculations. vCalc has an advanced UI using only CSS3.",
"repository": {
"type": "git",
"url": "git+https://github.com/MFM-347/vCalc.git"
},
"keywords": [
"vuejs",
"vite-vue",
"vue-3",
"css3",
"calculator",
"mfm3478"
],
"author": "MFM-347",
"license": "MIT",
"bugs": {
"url": "https://github.com/MFM-347/vCalc/issues"
},
"homepage": "https://github.com/MFM-347/vCalc#readme",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"start": "clear && npm run lint && npm run format && npm run dev"
},
"dependencies": {
"vue": "^3.4.29"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"prettier": "^3.2.5",
"vite": "^5.3.1"
}
}