-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.44 KB
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
{
"author": "ir3ne <irene.tomaini@gmail.com>",
"bugs": {
"url": "https://github.com/ir3ne/v-timeline/issues"
},
"dependencies": {
"vue": "^3.5.13"
},
"description": "A timeline component for Vue 3. It provides a simple and easy-to-use interface for creating custom timelines for light or dark themes.",
"devDependencies": {
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/tsconfig": "^0.7.0",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vitepress": "^1.6.1",
"vue-tsc": "^2.1.10"
},
"exports": {
".": {
"import": "./dist/v-timeline.js",
"require": "./dist/v-timeline.umd.cjs",
"types": "./dist/main.d.ts"
},
"./style.css": "./dist/v-timeline.css"
},
"files": [
"dist"
],
"homepage": "https://ir3ne.github.io/v-tmline/",
"keywords": [
"vue",
"vue3",
"timeline",
"component",
"v-timeline",
"v-tmline",
"v-timeline-vue",
"vue-timeline"
],
"license": "MIT",
"main": "./dist/v-timeline.umd.cjs",
"module": "./dist/v-timeline.js",
"name": "v-tmline",
"repository": {
"type": "git",
"url": "https://github.com/ir3ne/v-timeline.git"
},
"scripts": {
"build": "npm run clean && vite build && vue-tsc --emitDeclarationOnly",
"clean": "rm -rf dist",
"dev": "vite",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"preview": "vite preview"
},
"type": "module",
"types": "./dist/main.d.ts",
"version": "1.5.0"
}