-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.52 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
{
"name": "@beapi/be-a11y",
"version": "1.6.2",
"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"
],
"main": "./dist/be-a11y.js",
"module": "./dist/be-a11y.js",
"exports": {
".": {
"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",
"preview": "vite preview",
"test": "playwright test"
},
"dependencies": {
"body-scroll-lock": "4.0.0-beta.0",
"oneloop.js": "^5.1.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@playwright/test": "^1.49.1",
"@wordpress/stylelint-config": "^23.6.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"rollup-plugin-license": "^3.5.3",
"stylelint": "^16.12.0",
"stylelint-config-recess-order": "^5.1.1",
"tailwindcss": "^3.4.16",
"vite": "^6.0.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup"
]
}
},
"volta": {
"node": "20.9.0"
}
}