@ceed/ads 1.12.1-next.1 → 1.12.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/dist/index.cjs +4 -4
- package/dist/index.js +4 -4
- package/framer/index.js +42 -42
- package/package.json +20 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceed/ads",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.2",
|
|
4
4
|
"main": "dist/index.cjs",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"build-for-framer": "yarn esbuild src/framer-entrypoint.ts --bundle --outfile='framer/index.js' --format=esm '--external:react' '--external:react/jsx-runtime' '--external:react-dom' '--external:framer' '--external:framer-motion' --main-fields=module,main --target=chrome58 --minify",
|
|
15
15
|
"prepack": "yarn build",
|
|
16
16
|
"lint": "oxlint && eslint \"./src/**/*.{ts,tsx}\"",
|
|
17
|
+
"lint:fix": "oxlint --fix && eslint --fix \"./src/**/*.{ts,tsx}\"",
|
|
17
18
|
"esbuild": "esbuild"
|
|
18
19
|
},
|
|
19
20
|
"files": [
|
|
@@ -50,45 +51,44 @@
|
|
|
50
51
|
"unist-util-visit": "^5.0.0"
|
|
51
52
|
},
|
|
52
53
|
"devDependencies": {
|
|
53
|
-
"@chromatic-com/storybook": "^
|
|
54
|
+
"@chromatic-com/storybook": "^4.0.1",
|
|
54
55
|
"@ecubelabs/prettier-config": "^0.0.8",
|
|
55
56
|
"@ecubelabs/tsconfig": "^1.0.0",
|
|
56
57
|
"@mui/material": "^5.15.10",
|
|
57
58
|
"@prettier/plugin-oxc": "^0.0.4",
|
|
58
|
-
"@storybook/addon-a11y": "^
|
|
59
|
-
"@storybook/addon-
|
|
60
|
-
"@storybook/addon-
|
|
61
|
-
"@storybook/addon-
|
|
62
|
-
"@storybook/
|
|
63
|
-
"@storybook/
|
|
64
|
-
"@storybook/blocks": "^8.6.0",
|
|
65
|
-
"@storybook/manager-api": "^8.6.0",
|
|
66
|
-
"@storybook/react": "^8.6.0",
|
|
67
|
-
"@storybook/react-webpack5": "^8.6.0",
|
|
68
|
-
"@storybook/test": "^8.6.0",
|
|
69
|
-
"@storybook/theming": "^8.6.0",
|
|
59
|
+
"@storybook/addon-a11y": "^9.0.18",
|
|
60
|
+
"@storybook/addon-docs": "^9.0.18",
|
|
61
|
+
"@storybook/addon-links": "^9.0.18",
|
|
62
|
+
"@storybook/addon-vitest": "^9.0.18",
|
|
63
|
+
"@storybook/builder-vite": "^9.0.18",
|
|
64
|
+
"@storybook/react-vite": "^9.0.18",
|
|
70
65
|
"@types/unist": "^3.0.2",
|
|
66
|
+
"@vitest/browser": "^3.2.4",
|
|
67
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
71
68
|
"esbuild": "^0.25.0",
|
|
72
69
|
"eslint": "^8.46.0",
|
|
73
70
|
"eslint-config-prettier": "^10.1.5",
|
|
74
|
-
"eslint-plugin-oxlint": "^1.
|
|
71
|
+
"eslint-plugin-oxlint": "^1.9.0",
|
|
75
72
|
"eslint-plugin-prettier": "^5.5.1",
|
|
76
73
|
"eslint-plugin-react": "^7.34.1",
|
|
77
74
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
75
|
+
"eslint-plugin-storybook": "9.0.18",
|
|
78
76
|
"framer": "^2.4.1",
|
|
79
|
-
"oxlint": "^1.
|
|
77
|
+
"oxlint": "^1.9.0",
|
|
78
|
+
"playwright": "^1.54.1",
|
|
80
79
|
"prettier": "^3.6.2",
|
|
81
80
|
"react": "^18.2.0",
|
|
82
81
|
"react-dom": "^18.2.0",
|
|
83
82
|
"semantic-release": "^24.2.1",
|
|
84
83
|
"semantic-release-yarn": "^3.0.2",
|
|
85
|
-
"storybook": "^
|
|
86
|
-
"typescript": "^5.3.3"
|
|
84
|
+
"storybook": "^9.0.18",
|
|
85
|
+
"typescript": "^5.3.3",
|
|
86
|
+
"vite": "^7.0.6",
|
|
87
|
+
"vitest": "^3.2.4"
|
|
87
88
|
},
|
|
88
89
|
"repository": {
|
|
89
90
|
"type": "git",
|
|
90
91
|
"url": "git+ssh://git@github.com/Ecube-Labs/hds.git"
|
|
91
92
|
},
|
|
92
|
-
"packageManager": "yarn@4.1.0"
|
|
93
|
-
"stableVersion": "1.0.0"
|
|
93
|
+
"packageManager": "yarn@4.1.0"
|
|
94
94
|
}
|