@edifice.io/wiki 3.4.0-develop-pedago.1 → 3.4.0-develop-pedago.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/package.json +13 -6
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# EDIFICE.io - Wiki Application
|
|
2
|
+
|
|
3
|
+
Wiki and Courses application developed by Edifice.io
|
|
4
|
+
|
|
5
|
+
## LICENCE
|
|
6
|
+
|
|
7
|
+
- Licence : AGPL v3 - Copyright Région Hauts-de-France (ex Picardie), Département de l'Essonne, Région Nouvelle Aquitaine (ex Poitou-Charentes), Edifice
|
|
8
|
+
- Développeur(s) : Edifice
|
|
9
|
+
- Financeur(s) : Région Hauts-de-France (ex Picardie), Département de l'Essonne, Région Nouvelle Aquitaine (ex Poitou-Charentes), Edifice
|
|
10
|
+
|
|
11
|
+
## INSTALL
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pnpm install
|
|
15
|
+
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/wiki",
|
|
3
|
-
"version": "3.4.0-develop-pedago.
|
|
4
|
-
"
|
|
3
|
+
"version": "3.4.0-develop-pedago.2",
|
|
4
|
+
"description": "Wiki application",
|
|
5
|
+
"license": "AGPL-3.0",
|
|
5
6
|
"author": "Edifice",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"husky": {
|
|
@@ -16,9 +17,9 @@
|
|
|
16
17
|
]
|
|
17
18
|
},
|
|
18
19
|
"dependencies": {
|
|
19
|
-
"@edifice.io/bootstrap": "
|
|
20
|
-
"@edifice.io/client": "
|
|
21
|
-
"@edifice.io/react": "
|
|
20
|
+
"@edifice.io/bootstrap": "develop-pedago",
|
|
21
|
+
"@edifice.io/client": "develop-pedago",
|
|
22
|
+
"@edifice.io/react": "develop-pedago",
|
|
22
23
|
"@react-spring/web": "9.7.5",
|
|
23
24
|
"@tanstack/react-query": "5.62.7",
|
|
24
25
|
"@uidotdev/usehooks": "2.4.1",
|
|
@@ -26,7 +27,7 @@
|
|
|
26
27
|
"i18next": "23.8.1",
|
|
27
28
|
"i18next-http-backend": "2.4.2",
|
|
28
29
|
"lottie-react": "2.4.1",
|
|
29
|
-
"ode-explorer": "
|
|
30
|
+
"ode-explorer": "develop-pedago",
|
|
30
31
|
"react": "18.3.1",
|
|
31
32
|
"react-dom": "18.3.1",
|
|
32
33
|
"react-error-boundary": "4.0.13",
|
|
@@ -66,6 +67,12 @@
|
|
|
66
67
|
"vite-tsconfig-paths": "5.1.4",
|
|
67
68
|
"vitest": "2.1.9"
|
|
68
69
|
},
|
|
70
|
+
"exports": {
|
|
71
|
+
"./lib": {
|
|
72
|
+
"import": "./lib/index.js",
|
|
73
|
+
"types": "./lib/index.d.ts"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
69
76
|
"files": [
|
|
70
77
|
"lib"
|
|
71
78
|
],
|