-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1020 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 1020 Bytes
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
{
"name": "@axa-fr/everything-to-everywhere",
"version": "1.0.0",
"description": "",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build"
},
"author": "Johnathan MEUNIER",
"license": "MIT",
"contributors": [
{
"name": "Johnathan MEUNIER",
"email": "jonathan.meunier@axa.fr",
"url": "https://johnathan.fr"
},
{
"name": "Samuel HUSSEIN",
"email": "samuel.hussein@axa.fr"
}
],
"devDependencies": {
"@rsbuild/plugin-react": "^1.4.0",
"@rslib/core": "^0.12.4",
"@types/node": "^22.5.5",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"volta": {
"node": "22.8.0"
}
}