-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.61 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
{
"name": "vue3-flashcards",
"type": "module",
"version": "0.5.2",
"description": "Tinder-like flashcards component with dragging and flipping",
"author": "vad1ym",
"license": "MIT",
"homepage": "https://vad1ym.github.io/vue3-flashcards",
"repository": {
"type": "git",
"url": "https://github.com/vad1ym/vue3-flashcards"
},
"keywords": [
"vue",
"vue3",
"component",
"cards",
"flashcards",
"tinder",
"dating",
"dragging",
"flipping",
"vue3-flashcards"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/flashcards.js",
"require": "./dist/flashcards.js"
},
"./dist/*": "./dist/*"
},
"main": "./dist/flashcards.umd.js",
"module": "./dist/flashcards.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint src --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@types/node": "^22.9.3",
"@vitejs/plugin-vue": "^5.1.4",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.14",
"eslint": "^9.15.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "~5.6.2",
"vite": "^5.4.10",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.3.0",
"vitepress": "^1.5.0",
"vue": "^3.5.12",
"vue-tsc": "^2.1.8"
}
}