-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "@crowdstrike/alloy-react",
"version": "0.0.4",
"description": "React + PatternFly building blocks for Foundry UI's",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CrowdStrike/alloy-react.git"
},
"homepage": "https://github.com/CrowdStrike/alloy-react",
"bugs": {
"url": "https://github.com/CrowdStrike/alloy-react/issues"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"clean": "rm -rf dist",
"prepack": "npm run clean && npm run build"
},
"dependencies": {
"@crowdstrike/foundry-js": "^0.17.1",
"@patternfly/react-core": "^6.1.0",
"react-router-dom": "^7.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"html-webpack-plugin": "^5.6.3",
"postcss": "^8.5.3",
"rollup": "^4.34.8",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"ts-loader": "^9.4.2",
"typescript": "^5.8.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}