@oaknational/oak-components 2.33.0 → 2.34.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/README.md +9 -11
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/types.d.ts +585 -812
- package/package.json +12 -3
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oaknational/oak-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.34.0",
|
|
4
4
|
"licence": "MIT",
|
|
5
|
+
"packageManager": "pnpm@11.2.0",
|
|
5
6
|
"description": "Shared components for Oak applications",
|
|
6
7
|
"main": "dist/cjs/index.js",
|
|
7
8
|
"module": "dist/esm/index.js",
|
|
@@ -24,7 +25,7 @@
|
|
|
24
25
|
"build-storybook": "storybook build",
|
|
25
26
|
"prepare": "husky install",
|
|
26
27
|
"prepublishOnly": "./scripts/prepublish.sh",
|
|
27
|
-
"publish:local": "
|
|
28
|
+
"publish:local": "pnpm build && yalc publish --no-scripts",
|
|
28
29
|
"outdated": "bash scripts/outdated.sh",
|
|
29
30
|
"audit": "bash scripts/audit.sh",
|
|
30
31
|
"knip": "knip"
|
|
@@ -37,11 +38,16 @@
|
|
|
37
38
|
"react-dom": ">=18.2.0",
|
|
38
39
|
"styled-components": ">=5.3.11"
|
|
39
40
|
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": "24",
|
|
43
|
+
"pnpm": ">=11"
|
|
44
|
+
},
|
|
40
45
|
"devDependencies": {
|
|
41
46
|
"@commitlint/cli": "^18.4.4",
|
|
42
47
|
"@commitlint/config-conventional": "^18.4.4",
|
|
43
48
|
"@dnd-kit/core": "^6.3.1",
|
|
44
49
|
"@dnd-kit/sortable": "^10.0.0",
|
|
50
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
45
51
|
"@rollup/plugin-commonjs": "^29.0.2",
|
|
46
52
|
"@rollup/plugin-json": "^6.1.0",
|
|
47
53
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
@@ -68,8 +74,10 @@
|
|
|
68
74
|
"@types/react-test-renderer": "^18.0.7",
|
|
69
75
|
"@types/react-transition-group": "^4.4.12",
|
|
70
76
|
"@types/styled-components": "^5.1.36",
|
|
77
|
+
"@types/yargs": "^17.0.35",
|
|
71
78
|
"@typescript-eslint/eslint-plugin": "^6.18.1",
|
|
72
79
|
"@typescript-eslint/parser": "^6.18.1",
|
|
80
|
+
"assert": "^2.1.0",
|
|
73
81
|
"eslint": "^8.56.0",
|
|
74
82
|
"eslint-config-prettier": "^9.1.0",
|
|
75
83
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
@@ -101,7 +109,8 @@
|
|
|
101
109
|
"storybook-react-context": "^0.8.0",
|
|
102
110
|
"ts-jest": "^29.4.9",
|
|
103
111
|
"tsx": "^4.21.0",
|
|
104
|
-
"typescript": "^5.9.3"
|
|
112
|
+
"typescript": "^5.9.3",
|
|
113
|
+
"yargs": "^18.0.0"
|
|
105
114
|
},
|
|
106
115
|
"directories": {
|
|
107
116
|
"example": "examples"
|