fix: Disable SSL verification for Figma API and fix Storybook config
Some checks failed
DSS Project Analysis / dss-context-update (push) Has been cancelled

- Add verify=False to httpx.AsyncClient in figma_tools.py
- Add verify=False to requests.request in project/figma.py
- Replace .storybook/main.ts with main.cjs (CommonJS) to fix ESM loading error
- Add package.json with Storybook dependencies

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
DSS
2025-12-12 08:10:28 -03:00
parent b3c0c0589e
commit b8884a4a7b
7 changed files with 3832 additions and 97 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "dss-monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"storybook": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build"
},
"devDependencies": {
"@storybook/addon-a11y": "^10.1.7",
"@storybook/addon-docs": "^10.1.7",
"@storybook/preact-vite": "^10.1.7",
"esbuild": "^0.27.1",
"preact": "^10.26.5",
"storybook": "^10.1.7",
"vite": "^6.3.5"
},
"dependencies": {
"preact": "^10.26.5"
}
}