-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.1 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@devix-tecnologia/timeline-vue",
"private": false,
"version": "3.1.8",
"license": "MIT",
"type": "module",
"keywords": [
"timeline",
"vue",
"timeline-vue",
"timeline-component",
"devix",
"linha-do-tempo"
],
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"./**/*.{js,ts,vue,json,css,scss,md}\"",
"dev": "vite",
"test:unit": "vitest",
"build": "cross-env STORYBOOK=false vue-tsc && vite build",
"preview": "vite preview",
"storybook": "cross-env STORYBOOK=true storybook dev -p 6006",
"build:storybook": "cross-env STORYBOOK=true storybook build",
"semantic-release": "semantic-release"
},
"dependencies": {
"@fontsource/material-icons": "^5.0.18",
"date-fns": "^4.1.0",
"material-symbols": "^0.25.0",
"vue": "^3.5.11",
"wrap-ansi": "^9.0.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^6.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.1.0",
"@semantic-release/npm": "12.0.1",
"@storybook/addon-a11y": "^8.1.4",
"@storybook/addon-essentials": "^8.1.4",
"@storybook/addon-interactions": "^8.1.4",
"@storybook/addon-links": "^8.1.4",
"@storybook/blocks": "^8.1.4",
"@storybook/test": "^8.1.4",
"@storybook/vue3": "^8.1.4",
"@storybook/vue3-vite": "^8.1.4",
"@testing-library/vue": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^2.1.2",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.29.0",
"happy-dom": "^15.7.4",
"postcss": "^8.1.0",
"postcss-load-config": "^6.0.1",
"postcss-plugin": "^1.0.0",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"semantic-release": "20.1.1",
"storybook": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^5.2.12",
"vite-plugin-dts": "^4.2.3",
"vitest": "^2.1.2",
"vue-tsc": "^2.1.6"
},
"resolutions": {
"wrap-ansi": "^9.0.0"
},
"files": [
"dist"
],
"types": "./dist/types/index.d.ts",
"module": "./dist/timeline-vue.es.js",
"exports": {
".": {
"import": "./dist/timeline-vue.es.js"
},
"./dist/style.css": "./dist/style.css"
},
"publishConfig": {
"access": "public"
},
"postcss": {
"map": false,
"plugins": {
"autoprefixer": {}
}
},
"author": "Devix Tecnologia",
"contributors": [
{
"name": "Sidarta Veloso",
"github": "https://github.com/sidartaveloso",
"linkedin": "https://www.linkedin.com/in/sidartaveloso"
},
{
"name": "Fernando Gatti",
"github": "https://github.com/gattifernando",
"linkedin": "https://www.linkedin.com/in/gattifernando/"
}
]
}