-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2 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
{
"name": "@beapi/be-a11y",
"version": "2.0.1",
"type": "module",
"description": "Collection of usefull accessible components",
"homepage": "https://beapi.github.io/be-a11y/",
"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.12",
"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"
},
"volta": {
"node": "22.14.0"
}
}