-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.18 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.18 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
{
"name": "@patternfly/react-data-view",
"version": "6.3.0-prerelease.3",
"description": "Data view used for Red Hat projects.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build": "npm run build:index && npm run build:js && npm run build:esm && npm run build:fed:packages",
"build:watch": "npm run build:js && npm run build:esm -- --watch && npm run build:fed:packages -- --watch",
"build:esm": "tsc --build --verbose ./tsconfig.json",
"build:fed:packages": "node generate-fed-package-json.js",
"build:js": "tsc -p tsconfig.cjs.json",
"build:index": "node generate-index.js",
"clean": "rimraf dist",
"docs:develop": "pf-docs-framework start",
"docs:build": "pf-docs-framework build all --output public",
"docs:serve": "pf-docs-framework serve public --port 5001",
"docs:screenshots": "pf-docs-framework screenshots --urlPrefix http://localhost:5001",
"test:a11y": "patternfly-a11y --config patternfly-a11y.config",
"serve:a11y": "serve coverage"
},
"repository": "git+https://github.com/patternfly/react-data-view.git",
"author": "Red Hat",
"license": "MIT",
"bugs": {
"url": "https://github.com/patternfly/react-data-view/issues"
},
"homepage": "https://github.com/patternfly/react-data-view#readme",
"publishConfig": {
"access": "public",
"tag": "prerelease"
},
"dependencies": {
"@patternfly/react-component-groups": "^6.3.0",
"@patternfly/react-core": "^6.0.0",
"@patternfly/react-icons": "^6.0.0",
"@patternfly/react-table": "^6.0.0",
"clsx": "^2.1.1",
"react-jss": "^10.10.0"
},
"peerDependencies": {
"react": "^17 || ^18 || ^19",
"react-dom": "^17 || ^18 || ^19"
},
"devDependencies": {
"@patternfly/documentation-framework": "^6.5.20",
"@patternfly/patternfly": "^6.0.0",
"@patternfly/react-code-editor": "^6.0.0",
"@patternfly/patternfly-a11y": "^5.1.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/react-router-dom": "^5.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^6.30.1",
"react-router-dom": "^6.30.1",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
}
}