@flowscape-ui/core-sdk 1.0.1 → 1.0.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowscape-ui/core-sdk",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Framework-agnostic 2D canvas engine built on Konva",
5
5
  "keywords": [
6
6
  "core",
@@ -49,7 +49,7 @@
49
49
  "scripts": {
50
50
  "dev": "vite --config playground/vite.config.ts",
51
51
  "build": "tsup",
52
- "prepublishOnly": "npm run build && npm run lint:ts && npm run test:run",
52
+ "prepublishOnly": "npm run build && npm run lint:ts",
53
53
  "test": "vitest",
54
54
  "test:ui": "vitest --ui",
55
55
  "test:run": "vitest run",
@@ -59,29 +59,42 @@
59
59
  "lint:ts": "tsc -p tsconfig.json --noEmit",
60
60
  "format": "prettier --write .",
61
61
  "format:check": "prettier --check .",
62
- "release:tag": "npm version patch && git push --follow-tags"
62
+ "release:tag": "npm version patch && git push --follow-tags",
63
+ "storybook": "storybook dev -p 6006",
64
+ "build-storybook": "storybook build"
63
65
  },
64
66
  "devDependencies": {
65
67
  "@eslint/js": "^9.10.0",
68
+ "@storybook/addon-docs": "^9.0.0-alpha.10",
69
+ "@storybook/addon-essentials": "^9.0.0-alpha.10",
70
+ "@storybook/addon-interactions": "^9.0.0-alpha.10",
71
+ "@storybook/addon-links": "^9.0.0-alpha.10",
72
+ "@storybook/blocks": "^9.0.0-alpha.10",
73
+ "@storybook/html-vite": "^9.1.16",
74
+ "@storybook/theming": "^8.6.14",
66
75
  "@types/node": "^22.5.4",
67
76
  "@typescript-eslint/eslint-plugin": "^8.7.0",
68
77
  "@typescript-eslint/parser": "^8.7.0",
69
- "@vitest/ui": "^2.1.8",
70
78
  "@vitest/coverage-v8": "^2.1.8",
79
+ "@vitest/ui": "^2.1.8",
80
+ "canvas": "^3.2.0",
71
81
  "eslint": "^9.10.0",
72
82
  "eslint-import-resolver-typescript": "^4.4.4",
73
83
  "eslint-plugin-import": "^2.29.1",
84
+ "eslint-plugin-storybook": "^0.11.6",
74
85
  "happy-dom": "^15.11.7",
75
86
  "jiti": "^2.5.1",
76
87
  "jsdom": "^25.0.1",
77
88
  "prettier": "^3.6.2",
89
+ "storybook": "^9.1.16",
78
90
  "tsup": "^8.2.4",
79
91
  "typescript": "^5.6.2",
80
92
  "vite": "^5.4.6",
81
- "vitest": "^2.1.8",
82
- "canvas": "^3.2.0"
93
+ "vitest": "^2.1.8"
83
94
  },
84
95
  "dependencies": {
85
- "konva": "^9.3.16"
96
+ "konva": "^10.0.12",
97
+ "react": "18.3.1",
98
+ "react-dom": "18.3.1"
86
99
  }
87
100
  }