@lls/vivi 24.1.4-04d1758e

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/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "@lls/vivi",
3
+ "version": "24.1.4-04d1758e",
4
+ "description": "",
5
+ "author": "",
6
+ "exports": {
7
+ ".": "./lib/index.js",
8
+ "./vivi.css": "./lib/assets/vivi.css",
9
+ "./clientImports": "./lib/assets/clientImports.js"
10
+ },
11
+ "homepage": "https://lelivrescolaire.github.io/vivi",
12
+ "type": "module",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/lelivrescolaire/monorepo.git"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/lelivrescolaire/monorepo/issues"
19
+ },
20
+ "license": "",
21
+ "files": [
22
+ "lib/",
23
+ "index.js",
24
+ "package.json",
25
+ "README.md"
26
+ ],
27
+ "devDependencies": {
28
+ "@biomejs/biome": "1.5.0",
29
+ "@ladle/react": "4.0.2",
30
+ "@testing-library/react": "14.1.2",
31
+ "@types/codemirror": "5.60.6",
32
+ "@types/domhandler": "2.4.5",
33
+ "@types/lodash": "4.14.202",
34
+ "@types/murmurhash": "2.0.0",
35
+ "@types/node": "20.9.3",
36
+ "@types/react": "18.2.45",
37
+ "@types/react-dom": "18.2.18",
38
+ "@types/xml-formatter": "2.1.1",
39
+ "@vitejs/plugin-react-swc": "3.5.0",
40
+ "esbuild": "0.19.11",
41
+ "happy-dom": "12.10.3",
42
+ "nano-staged": "0.8.0",
43
+ "react": "18.2.0",
44
+ "react-dom": "18.2.0",
45
+ "typescript": "5.3.3",
46
+ "vite-tsconfig-paths": "4.2.3",
47
+ "vitest": "1.1.3",
48
+ "@lls/vitescripts": "24.1.4-04d1758e",
49
+ "@lls/utils": "24.1.4-04d1758e"
50
+ },
51
+ "dependencies": {
52
+ "codemirror": "5.65.15",
53
+ "html-to-react": "1.5.0",
54
+ "murmurhash": "2.0.0",
55
+ "nanoid": "5.0.5",
56
+ "react-select": "5.4.0",
57
+ "xml-formatter": "3.3.2",
58
+ "zustand": "4.4.7"
59
+ },
60
+ "peerDependencies": {
61
+ "lodash": "*",
62
+ "react": "*",
63
+ "react-dom": "*"
64
+ },
65
+ "overrides": {
66
+ "react-lazyload": {
67
+ "react": "^18",
68
+ "react-dom": "^18"
69
+ }
70
+ },
71
+ "nano-staged": {
72
+ "*.{js,jsx,mjs,tsx,ts}": [
73
+ "pnpm biome check --apply"
74
+ ]
75
+ },
76
+ "scripts": {
77
+ "start": "pnpm ladle serve",
78
+ "declarationfiles": "pnpm -p typescript tsc --project tsconfig.production.json",
79
+ "build": "NODE_ENV=production node build.mjs",
80
+ "deploy-ladle": "pnpm ladle build && aws s3 sync dist s3://build.lelivrescolaire.fr/storybook/vivi-dev --acl=public-read --delete",
81
+ "deploy-ladle-prod": "pnpm ladle build && aws s3 sync dist s3://build.lelivrescolaire.fr/storybook/vivi-prod --acl=public-read --delete",
82
+ "test": "CONF_ENV=test pnpm vitest run",
83
+ "lint": "pnpm biome check --apply src __tests__ stories",
84
+ "stats": "STATS=1 npm run build",
85
+ "precommit": "pnpm nano-staged"
86
+ }
87
+ }