-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.09 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.09 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@beapi/be-a11y",
"version": "2.0.0",
"type": "module",
"description": "Collection of usefull accessible components",
"repository": {
"type": "git",
"url": "https://github.com/BeAPI/be-a11y"
},
"author": "Be API",
"license": "MIT",
"private": false,
"files": [
"dist",
"!dist/**/*.test.*"
],
"main": "./dist/be-a11y.js",
"module": "./dist/be-a11y.js",
"types": "./dist/types/be-a11y.d.ts",
"exports": {
".": {
"types": "./dist/types/be-a11y.d.ts",
"import": "./dist/be-a11y.js",
"require": "./dist/be-a11y.js"
}
},
"sideEffects": false,
"keywords": [
"accessible",
"a11Y",
"accessibility",
"w3c",
"components",
"modal",
"tab",
"accordion",
"es6"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.build.json",
"build:types": "tsc -p tsconfig.build.json",
"preview": "vite preview",
"build:demo": "vite build --config vite.demo.config.mjs",
"preview:demo": "vite preview --config vite.demo.config.mjs",
"test": "playwright test",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint . --max-warnings 0"
},
"dependencies": {
"body-scroll-lock": "4.0.0-beta.0",
"oneloop.js": "^5.2.2"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@playwright/test": "^1.59.1",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@wordpress/stylelint-config": "^23.11.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.2.3",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"rollup-plugin-license": "^3.5.3",
"stylelint": "^16.15.0",
"stylelint-config-recess-order": "^6.0.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2",
"typescript-eslint": "^8.58.1",
"vite": "^7.3.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup"
]
},
"overrides": {
"serialize-javascript@<3.1.0": ">=3.1.0",
"rollup": "^4.59.0",
"@babel/runtime@<7.26.10": ">=7.26.10",
"@babel/helpers@<7.26.10": ">=7.26.10",
"brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12",
"brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2",
"brace-expansion@<1.1.13": ">=1.1.13",
"brace-expansion@>=2.0.0 <2.0.3": ">=2.0.3",
"@eslint/plugin-kit@<0.3.4": ">=0.3.4",
"playwright@<1.55.1": ">=1.55.1",
"glob@>=10.2.0 <10.5.0": ">=10.5.0",
"lodash@<4.18.0": ">=4.18.0",
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
"qs@<6.14.2": ">=6.14.2",
"minimatch@<3.1.3": ">=3.1.3",
"minimatch@<3.1.4": ">=3.1.4",
"serialize-javascript@<=7.0.2": ">=7.0.3",
"serialize-javascript@<7.0.5": ">=7.0.5",
"ajv@<6.14.0": ">=6.14.0",
"ajv@>=7.0.0-alpha.0 <8.18.0": ">=8.18.0",
"ajv@^8.0.0": "^8.18.0",
"flatted@<3.4.0": ">=3.4.0",
"flatted@<=3.4.1": ">=3.4.2",
"picomatch@<2.3.2": ">=2.3.2",
"yaml@>=2.0.0 <2.8.3": ">=2.8.3"
}
},
"volta": {
"node": "22.14.0"
}
}