-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.35 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.35 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
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
{
"name": "@allomambo/queso",
"version": "0.5.2",
"description": "VueJS component library to use in conjunction with Arepa",
"repository": {
"type": "git",
"url": "git+https://github.com/allomambo/queso.git"
},
"homepage": "https://allomambo.github.io/queso/",
"author": "MamboMambo <allo@mambomambo.ca> (https://mambomambo.ca)",
"contributors": [
"Alexandre Belley <ab@mambomambo.ca> (https://mambomambo.ca/)",
"Maxime Lafrenière <jesuis@maximelafreniere.com> (https://maximelafreniere.com)",
"Aurélien Vigne <yay@aurelienvigne.com> (http://www.aurelienvigne.com)",
"Antoine Savard <antoinesavard8@gmail.com> (https://mambomambo.ca/)"
],
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/declaration/components.d.ts",
"files": [
"dist/*",
"src/*"
],
"exports": {
".": {
"types": "./dist/declaration/components.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./types": "./dist/declaration/types.d.ts",
"./styles/core": "./src/assets/scss/main.scss",
"./styles/reset": "./src/assets/scss/ress.scss",
"./scripts/utils": "./src/utils/index.ts",
"./utils": "./src/utils/index.ts",
"./*": "./dist/*"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"ci": "yarn install --immutable --immutable-cache --check-cache",
"vite": "vite",
"watch-tsc": "vue-tsc --watch --noEmit",
"serve": "npm-run-all --parallel watch-tsc vite",
"build:lib": "vite build",
"publish:lib": "npm publish --access public",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"test:coverage": "vitest run --coverage",
"test:run": "vitest --run",
"test": "vitest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@vueuse/core": "^10.9.0",
"@vueuse/integrations": "^11.0.3",
"focus-trap": "^7",
"vite-plugin-lib-inject-css": "^2.1.0",
"vue": "^3.4.27"
},
"devDependencies": {
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-legacy": "^5.4.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-markdown": "^5.0.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-vue": "^9.26.0",
"happy-dom": "^14.10.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"sass": "^1.77.1",
"terser": "^5.31.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-restart": "^0.4.0",
"vitepress": "^1.6.3",
"vitest": "^1.6.0",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.0.17"
}
}