-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.08 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
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": "@feedzai/autovizua11y",
"description": "AutoVizuA11y is a React library that automates the process of creating accessible data visualizations",
"private": false,
"version": "2.0.3",
"author": "Feedzai",
"license": "AGPL-3.0",
"keywords": [
"accessibility",
"visualization",
"dataviz",
"react",
"javascript"
],
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.es.mjs",
"types": "./dist/AutoVizuA11y.d.ts",
"exports": {
".": {
"types": "./dist/AutoVizuA11y.d.ts",
"import": "./dist/index.es.mjs",
"require": "./dist/index.umd.cjs"
},
"./styles.css": "./dist/styles.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feedzai/AutoVizuA11y.git"
},
"engines": {
"node": ">= 18",
"npm": ">= 8"
},
"scripts": {
"format": "npx prettier --write '**/*.{jsx,ts,tsx,js}'",
"reinstall": "rimraf node_modules && npm install",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\" --fix",
"build": "npm run lint && vite build",
"postbuild": "size-limit",
"docs:install": "cd ./examples && npm install",
"docs:dev": "cd ./examples && npm run dev",
"docs:build": "npm run docs:install && cd ./examples && npm run build",
"docs:preview": "cd ./examples && npm run preview",
"docs:ci": "npm run build && npm run docs:build && npm run docs:preview",
"test:e2e-open": "cypress open --e2e",
"test:e2e-run": "cypress run --e2e",
"test:local": "start-server-and-test docs:ci http://localhost:5173/AutoVizuA11y/ 'npm run test:e2e-open'",
"test:ci": "start-server-and-test docs:ci http://localhost:5173/AutoVizuA11y/ 'npm run test:e2e-run'"
},
"peerDependencies": {
"react": ">= 17.0.2",
"react-dom": ">= 17.0.2"
},
"dependencies": {
"@feedzai/js-utilities": "^1.6.0",
"react": ">= 17.0.2",
"react-dom": ">= 17.0.2"
},
"devDependencies": {
"@cypress/code-coverage": "^3.13.2",
"@eslint/js": "^9.13.0",
"@size-limit/preset-small-lib": "^11.0.2",
"@testing-library/cypress": "^10.0.2",
"@types/node": "^20.11.20",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@visx/visx": "^3.8.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"cypress": "^13.14.2",
"cypress-axe": "^1.5.0",
"cypress-plugin-tab": "^1.0.5",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"globals": "^15.11.0",
"jsdom": "^24.0.0",
"rimraf": "^5.0.5",
"size-limit": "^11.0.2",
"start-server-and-test": "^2.0.8",
"typescript": "^5.2.2",
"typescript-eslint": "^8.12.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-lib-inject-css": "^2.1.1",
"vite-tsconfig-paths": "^4.3.2"
},
"size-limit": [
{
"path": "dist/index.umd.cjs",
"limit": "10 kB",
"ignore": [
"fs"
]
},
{
"path": "dist/index.es.mjs",
"limit": "10 kB",
"ignore": [
"fs"
]
}
],
"bugs": {
"url": "https://github.com/feedzai/AutoVizuA11y/issues"
},
"homepage": "https://github.com/feedzai/AutoVizuA11y#readme"
}