-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "@lewishowles/components",
"version": "0.18.0",
"description": "A library of beautiful components, promoting rapid development, while ensuring that usability and accessibility are at the fore.",
"type": "module",
"files": ["dist"],
"main": "dist/components.es.js",
"module": "dist/components.es.js",
"exports": {
".": {
"import": "./dist/components.js",
"require": "./dist/components.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/lewishowles/components.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test:unit:run": "vitest run",
"test:component": "cypress run --component",
"lint": "eslint . --fix"
},
"dependencies": {
"@lewishowles/helpers": "^0.13.0",
"@lewishowles/testing": "^0.7.0",
"@vueuse/core": "^11.2.0",
"nanoid": "^5.0.8",
"vue": "^3.5.12"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@vitejs/plugin-vue": "^5.2.0",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"cypress": "^13.15.2",
"cypress-real-events": "^1.13.0",
"eslint": "^9.14.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.15",
"tailwindcss-hocus": "^0.0.7",
"vite": "^5.4.11",
"vitest": "^2.1.5"
}
}