-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
47
48
49
50
51
52
53
{
"name": "vuelnk",
"description": "A simple link shortener",
"private": false,
"version": "0.1.1",
"license": "MIT",
"author": "vuejsco",
"homepage": "https://vuejsco.com",
"repository": {
"type": "git",
"url": "https://github.com/vuejsco/vuelnk"
},
"bugs": {
"url": "https://github.com/vuejsco/vuelnk/issues"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"prepare": "husky",
"release": "release-it"
},
"dependencies": {
"nanoid": "^5.0.6",
"pinia": "^2.1.7",
"vue": "^3.5.13",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.19.0",
"@release-it/conventional-changelog": "^10.0.0",
"@types/node": "^20.11.24",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.17",
"eslint": "^9.19.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.4.35",
"prettier": "3.4.2",
"release-it": "^18.1.2",
"tailwindcss": "^3.4.1",
"typescript": "~5.6.2",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.5",
"vue-tsc": "^2.2.0"
}
}