-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.91 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
{
"name": "react-data-matrix",
"version": "1.0.1",
"private": false,
"license": "MIT",
"homepage": "https://bronz3beard.github.io/react-matrix",
"author": "bronz3beard <heyrory.com@gmail.com> (https://www.heyrory.com/)",
"keywords": [
"data",
"risk",
"safety",
"matrix",
"react",
"table",
"data table",
"data grid",
"data matrix"
],
"devEngines": {
"runtime": {
"name": "node",
"version": "^22.12.0 || ^24.0.0 || >=26.0.0",
"onFail": "error"
}
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist/index.js",
"dist/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bronz3beard/react-matrix.git"
},
"bugs": {
"url": "https://github.com/bronz3beard/react-matrix/issues"
},
"description": "View structured data in a matrix table (data grid), showing a value located at an X and Y coordinate.",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.json && vite build -c vite.lib.config.ts && tsc -p tsconfig.lib.json",
"build:site": "vite build",
"build:watch": "vite build -c vite.lib.config.ts --watch",
"typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.node.json --noEmit",
"test": "vitest run",
"test:e2e": "E2E_FIXTURES=1 npm run build:site && playwright test",
"test:e2e:docker": "sh scripts/e2e-docker.sh",
"check:package": "node scripts/check-package.mjs && node scripts/check-treeshake.mjs && publint --strict && attw --pack --profile esm-only",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"mock:publish": "npm pack --dry-run",
"prepublishOnly": "npm run build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"react": "^18.3.0 || ^19.0.0",
"react-dom": "^18.3.0 || ^19.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@axe-core/playwright": "^4.13.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "1.63.0",
"@testing-library/dom": "^10.4.2",
"@testing-library/react": "^16.3.3",
"@types/node": "^22.20.4",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"@vitejs/plugin-react": "^6.1.1",
"eslint": "^10.11.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.7",
"jsdom": "^30.1.0",
"lightningcss": "^1.33.0",
"publint": "^0.3.24",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.70.0",
"vite": "^8.3.0",
"vitest": "^5.0.1"
}
}