-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.22 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@socialgouv/e2esdk-devtools",
"version": "0.0.0-semantically-released",
"license": "Apache-2.0",
"description": "Developer tools panel to inspect and interact with an e2esdk client",
"author": {
"name": "François Best",
"email": "[email protected]",
"url": "https://francoisbest.com"
},
"repository": "https://github.com/SocialGouv/e2esdk",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/",
"sceau.json"
],
"tsup": {
"entry": [
"src/index.tsx"
],
"format": [],
"dts": true,
"treeshake": true
},
"scripts": {
"dev": "vite --port 3000 --clearScreen false",
"build:npm": "run-p build:npm:*",
"build:npm:bundle": "vite build",
"build:npm:types": "tsup",
"typecheck": "tsc",
"prepack": "sceau sign"
},
"peerDependencies": {
"@socialgouv/e2esdk-client": "workspace:^"
},
"dependencies": {
"@chakra-ui/react": "^2.5.2",
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@socialgouv/e2esdk-api": "workspace:^",
"@socialgouv/e2esdk-crypto": "workspace:^",
"@socialgouv/e2esdk-react": "workspace:^",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-query-devtools": "^4.28.0",
"framer-motion": "^10.8.4",
"react-focus-lock": "^2.9.4",
"react-hook-form": "^7.43.7",
"react-icons": "^4.8.0",
"vite-plugin-top-level-await": "^1.3.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@socialgouv/e2esdk-client": "workspace:^",
"@types/node": "^18.15.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"dotenv": "^16.0.3",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-visualizer": "^5.9.0",
"sceau": "^1.3.0",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"vite": "^4.2.1",
"vite-plugin-wasm": "^3.2.2"
}
}