-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.83 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
{
"name": "@centrogeomx/sisdai-componentes",
"version": "4.13.0",
"publishConfig": {
"access": "public"
},
"description": "Biblioteca de componentes de Vue reutilizables",
"type": "module",
"license": "LGPL-3.0-only",
"main": "./src/index.js",
"keywords": [
"vue",
"js",
"Sisdai",
"CentroGeo",
"Conahcyt"
],
"contributors": [
"Alonso Cortés Solís <[email protected]> (https://github.com/AlonsoCortes)",
"Andrés Martínez González <[email protected]> (https://github.com/andres-geotec)",
"Daniel Gómez Hernández <[email protected]> (https://github.com/jdanielgoh)",
"Diana Elizabeth Minor <[email protected]> (https://github.com/deminore)",
"Eric Torres <[email protected]> (https://github.com/ciretorres)",
"Flkt <[email protected]> (https://github.com/flkt-crnpio)",
"Miguel Ángel Martínez <[email protected]> (https://github.com/migueldnt)",
"Paulina Pradel <[email protected]> (https://github.com/paupradel)"
],
"files": [
"src",
"README.md"
],
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm cache clean -f && npm cache verify && npm i",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs --mode production",
"docs:preview": "vitepress preview docs --port 8081",
"format": "prettier . --write",
"format-lint": "npm run format && npm run lint",
"lint": "eslint --fix --ignore-pattern .gitignore .",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@popperjs/core": "^2.11.8"
},
"peerDependencies": {
"vue": "^3.5.13",
"@centrogeomx/sisdai-css": "^1.7.4"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@html-eslint/eslint-plugin": "^0.27.0",
"@html-eslint/parser": "^0.27.0",
"@rushstack/eslint-patch": "^1.10.4",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^5.1.3",
"@vitest/coverage-v8": "^2.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/test-utils": "^2.4.6",
"dotenv": "^16.4.7",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-vue": "^9.28.0",
"globals": "^15.10.0",
"happy-dom": "^15.7.4",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"pinia": "^2.2.2",
"prettier": "^3.3.3",
"vite": "^5.4.8",
"vitepress": "^1.3.4",
"vitest": "^2.0.5",
"volar-service-vetur": "^0.0.62",
"vue-matomo": "^4.2.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/CentroGeo/sisdai-componentes"
},
"bugs": {
"url": "https://github.com/CentroGeo/sisdai-componentes/issues"
},
"homepage": "https://sisdai-componentes.conahcyt.mx"
}