-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.77 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "coptiv",
"type": "module",
"version": "0.0.0",
"private": true,
"description": "A supercharged clipboard tool for sharing code snippets, text, and many more with ease.",
"author": "XONE Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xone-labs/coptiv.git"
},
"bugs": {
"url": "https://github.com/xone-labs/coptiv/issues"
},
"maintainers": [
{
"name": "Xubikle Development Team",
"email": "[email protected]"
}
],
"keywords": [
"coptiv",
"nuxt",
"clipboard",
"copy",
"paste",
"supercharge",
"sharing",
"tool",
"open-source",
"xone-labs",
"xubikle"
],
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "simple-git-hooks && nuxt prepare",
"lint": "eslint . --fix",
"type-check": "vue-tsc --noEmit"
},
"dependencies": {
"vue": "^3.4.27",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.0",
"@iconify/json": "^2.2.217",
"@nuxt/eslint": "^0.3.13",
"@nuxt/fonts": "^0.7.0",
"@nuxt/scripts": "^0.4.7",
"@nuxtjs/color-mode": "^3.4.1",
"@nuxtjs/seo": "2.0.0-rc.10",
"@pinia-plugin-persistedstate/nuxt": "^1.2.0",
"@pinia/nuxt": "^0.5.1",
"@types/node": "^20.14.2",
"@unocss/eslint-plugin": "^0.60.4",
"@unocss/extractor-arbitrary-variants": "^0.60.4",
"@unocss/nuxt": "^0.60.4",
"@vueuse/components": "^10.10.0",
"@vueuse/core": "^10.10.0",
"@vueuse/math": "^10.10.0",
"@vueuse/nuxt": "^10.10.0",
"eslint": "8.57.0",
"eslint-plugin-command": "^0.2.3",
"eslint-plugin-format": "^0.1.1",
"lint-staged": "^15.2.5",
"nuxt": "^3.11.2",
"nuxt-api-party": "^2.0.5",
"nuxt-icon": "^0.6.10",
"nuxt-svgo": "^4.0.1",
"nuxt-typed-router": "^3.6.3",
"overlayscrollbars": "^2.8.3",
"overlayscrollbars-vue": "^0.5.9",
"pinia": "^2.1.7",
"radash": "^12.1.0",
"sass": "^1.77.4",
"simple-git-hooks": "^2.11.1",
"std-env": "^3.7.0",
"typescript": "^5.4.5",
"unocss": "^0.60.4",
"unocss-preset-animations": "^1.0.2",
"unocss-preset-useful": "^0.4.2",
"vue-tsc": "^1.8.27",
"zod": "^3.23.8"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"pnpm lint"
]
}
}