etudes 6.2.2 → 6.3.0
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 +25 -22
package/package.json
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "etudes",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0",
|
|
4
4
|
"description": "A study of headless React components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"clean": "rimraf lib",
|
|
8
|
-
"prebuild": "npm run
|
|
8
|
+
"prebuild": "npm run clean && npm run lint",
|
|
9
9
|
"build": "tsc",
|
|
10
10
|
"prepages": "rimraf .gh-pages",
|
|
11
11
|
"pages": "vite build -c demo/vite.config.ts",
|
|
12
12
|
"dev": "concurrently \"tsc -w\" \"wait-on -t 30s lib && vite dev -c demo/vite.config.ts --port 8080\"",
|
|
13
|
-
"test": "
|
|
13
|
+
"test": "npm run unit",
|
|
14
|
+
"unit": "vitest run --coverage",
|
|
14
15
|
"lint": "eslint",
|
|
15
16
|
"lint:fix": "eslint --fix"
|
|
16
17
|
},
|
|
@@ -34,30 +35,32 @@
|
|
|
34
35
|
"utils"
|
|
35
36
|
],
|
|
36
37
|
"devDependencies": {
|
|
37
|
-
"@eslint/js": "^9.
|
|
38
|
+
"@eslint/js": "^9.13.0",
|
|
38
39
|
"@semantic-release/changelog": "^6.0.3",
|
|
39
40
|
"@semantic-release/git": "^10.0.1",
|
|
40
|
-
"@stylistic/eslint-plugin": "^2.
|
|
41
|
-
"@types/node": "^22.
|
|
42
|
-
"@types/react": "^18.3.
|
|
43
|
-
"@types/react-dom": "^18.3.
|
|
44
|
-
"@vitejs/plugin-react": "^4.3.
|
|
41
|
+
"@stylistic/eslint-plugin": "^2.9.0",
|
|
42
|
+
"@types/node": "^22.7.9",
|
|
43
|
+
"@types/react": "^18.3.12",
|
|
44
|
+
"@types/react-dom": "^18.3.1",
|
|
45
|
+
"@vitejs/plugin-react": "^4.3.3",
|
|
46
|
+
"@vitest/coverage-v8": "^2.1.3",
|
|
45
47
|
"autoprefixer": "^10.4.20",
|
|
46
|
-
"concurrently": "^9.0.
|
|
47
|
-
"eslint": "^9.
|
|
48
|
-
"eslint-plugin-tailwindcss": "^3.17.
|
|
49
|
-
"postcss": "^8.4.
|
|
48
|
+
"concurrently": "^9.0.1",
|
|
49
|
+
"eslint": "^9.13.0",
|
|
50
|
+
"eslint-plugin-tailwindcss": "^3.17.5",
|
|
51
|
+
"postcss": "^8.4.47",
|
|
50
52
|
"react": "^18.3.1",
|
|
51
53
|
"react-dom": "^18.3.1",
|
|
52
|
-
"react-router": "^6.
|
|
53
|
-
"react-router-dom": "^6.
|
|
54
|
+
"react-router": "^6.27.0",
|
|
55
|
+
"react-router-dom": "^6.27.0",
|
|
54
56
|
"rimraf": "^6.0.1",
|
|
55
|
-
"semantic-release": "^24.1.
|
|
56
|
-
"tailwindcss": "^3.4.
|
|
57
|
+
"semantic-release": "^24.1.3",
|
|
58
|
+
"tailwindcss": "^3.4.14",
|
|
57
59
|
"tailwindcss-safe-area": "^0.6.0",
|
|
58
|
-
"typescript": "^5.6.
|
|
59
|
-
"typescript-eslint": "^8.
|
|
60
|
-
"vite": "^5.4.
|
|
60
|
+
"typescript": "^5.6.3",
|
|
61
|
+
"typescript-eslint": "^8.11.0",
|
|
62
|
+
"vite": "^5.4.10",
|
|
63
|
+
"vitest": "^2.1.3",
|
|
61
64
|
"wait-on": "^8.0.1"
|
|
62
65
|
},
|
|
63
66
|
"dependencies": {
|
|
@@ -72,8 +75,8 @@
|
|
|
72
75
|
"react": "^18.2.0"
|
|
73
76
|
},
|
|
74
77
|
"optionalDependencies": {
|
|
75
|
-
"react-router": "^6.
|
|
76
|
-
"react-router-dom": "^6.
|
|
78
|
+
"react-router": "^6.27.0",
|
|
79
|
+
"react-router-dom": "^6.27.0"
|
|
77
80
|
},
|
|
78
81
|
"packageManager": "pnpm@9.7.0+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf"
|
|
79
82
|
}
|