forked from patternfly/react-catalog-view
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.26 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.26 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
{
"name": "@patternfly/react-catalog-view-extension",
"version": "6.1.0-prerelease.0",
"description": "This library provides catalog view extensions for PatternFly 4 React.",
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"patternfly:src": "src/",
"scripts": {
"build": "yarn generate && yarn build:esm && yarn build:cjs",
"build:esm": "tsc --build --verbose ./tsconfig.json",
"build:cjs": "tsc --build --verbose ./tsconfig.cjs.json",
"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 5000",
"docs:screenshots": "pf-docs-framework screenshots --urlPrefix http://localhost:5000",
"test:a11y": "patternfly-a11y --config patternfly-a11y.config",
"serve:a11y": "yarn serve coverage",
"generate": "yarn build:sass && yarn copy:sass && yarn copy:css",
"build:sass": "node buildSass.js",
"copy:sass": "shx mkdir -p dist/sass && shx cp -r sass/react-catalog-view-extension/* dist/sass",
"copy:css": "shx mkdir -p dist/css && shx cp src/components/*.css dist/css"
},
"repository": {
"type": "git",
"url": "https://github.com/patternfly/react-catalog-view.git"
},
"author": "Red Hat",
"license": "MIT",
"bugs": {
"url": "https://github.com/patternfly/react-catalog-view/issues"
},
"homepage": "https://github.com/patternfly/react-catalog-view#readme",
"publishConfig": {
"access": "public",
"tag": "prerelease"
},
"keywords": [
"react",
"patternfly"
],
"dependencies": {
"@patternfly/react-core": "^6.4.0",
"@patternfly/react-styles": "^6.4.0"
},
"peerDependencies": {
"react": "^17 || ^18 || ^19",
"react-dom": "^17 || ^18 || ^19"
},
"devDependencies": {
"@octokit/rest": "^18.0.0",
"@patternfly/documentation-framework": "^6.24.2",
"@patternfly/patternfly": "^6.4.0",
"@patternfly/patternfly-a11y": "^4.3.1",
"@patternfly/react-code-editor": "^6.4.0",
"@patternfly/react-table": "^6.4.0",
"monaco-editor": "0.34.1",
"react-monaco-editor": "0.51.0",
"rimraf": "^2.6.2",
"sass": "^1.80.0",
"shx": "^0.3.2",
"surge": "^0.23.1",
"tslib": "^2.0.0"
}
}