-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 869 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 869 Bytes
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
{
"name": "ipcalc",
"version": "1.1.0",
"description": "IP calculator application built with Vue.js and TypeScript",
"main": "index.js",
"bin": {
"ipcalc": "./bin/ipcalc.js"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit",
"cli": "tsx src/cli/index.ts"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@primevue/themes": "^4.4.0",
"@vuebits/ui": "^0.6.0",
"gsap": "^3.13.0",
"ogl": "^1.0.11",
"primeicons": "^7.0.0",
"primevue": "^4.4.0",
"vue": "^3.4.0",
"vuetify": "^3.10.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitejs/plugin-vue": "^6.0.1",
"tsx": "^4.7.0",
"typescript": "^5.9.2",
"vite": "^7.3.2",
"vite-plugin-vuetify": "^2.1.2",
"vue-tsc": "^3.1.1"
},
"type": "module"
}