-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.34 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
{
"name": "@touk/federated-component",
"version": "1.1.0",
"author": "Julian Wielga",
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.25.4",
"@babel/preset-react": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@loadable/component": "5.16.4",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.3.3",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@svgr/rollup": "8.1.0",
"@types/lodash": "4.17.7",
"@types/node": "22.9.0",
"@types/react": "18.3.3",
"@types/webpack-env": "1.18.5",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.18.0",
"babel-loader": "9.1.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"prettier": "3.3.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "6.0.1",
"rollup": "4.21.2",
"rollup-plugin-node-externals": "7.1.3",
"rollup-plugin-typescript2": "0.36.0",
"semantic-release": "24.1.1",
"typescript": "5.6.3"
},
"files": [
"cjs",
"esm",
"!**/*.{spec,stories}.d.ts",
"README.md",
"CHANGELOG.md"
],
"license": "Apache-2.0",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"peerDependencies": {
"react": "^17 || ^18",
"react-dom": "^17 || ^18"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/touk/federated-component.git"
},
"scripts": {
"prebuild": "rimraf cjs/* esm/*",
"build": "rollup -c",
"build:watch": "npm run build -- --watch",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"semantic-release": "semantic-release",
"test": "exit 0"
},
"types": "./cjs/index.d.ts"
}