@still-forest/canopy 0.10.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 ADDED
@@ -0,0 +1,112 @@
1
+ {
2
+ "name": "@still-forest/canopy",
3
+ "version": "0.10.0",
4
+ "author": "John Szymanowski",
5
+ "license": "MIT",
6
+ "description": "React components, built with Tailwind CSS, Shadcn, and VisX",
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "private": false,
14
+ "publishConfig": {
15
+ "registry": "https://registry.npmjs.org/",
16
+ "access": "public"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/still-forest/canopy.git"
21
+ },
22
+ "type": "module",
23
+ "scripts": {
24
+ "build": "tsc -b && vite build",
25
+ "chromatic": "chromatic --exit-zero-on-changes",
26
+ "dev": "vite",
27
+ "format": "biome format --write .",
28
+ "lint": "biome check .",
29
+ "lint:ci": "biome ci .",
30
+ "lint:fix": "biome check --write --unsafe .",
31
+ "prepublishOnly": "pnpm build",
32
+ "preview": "vite preview",
33
+ "storybook": "storybook dev -p 6006",
34
+ "storybook:build": "storybook build",
35
+ "storybook:build:docs": "storybook build --docs",
36
+ "storybook:docs": "storybook dev --docs",
37
+ "test": "vitest",
38
+ "test:coverage": "vitest run --coverage",
39
+ "test:watch": "vitest --watch",
40
+ "release": "release-it",
41
+ "release:dry-run": "release-it --dry-run"
42
+ },
43
+ "dependencies": {
44
+ "@radix-ui/react-dialog": "^1.1.10",
45
+ "@radix-ui/react-label": "^2.1.0",
46
+ "@radix-ui/react-popover": "^1.1.10",
47
+ "@radix-ui/react-separator": "^1.1.4",
48
+ "@radix-ui/react-slot": "^1.1.2",
49
+ "cmdk": "^1.1.1",
50
+ "lucide-react": "^0.508.0",
51
+ "tw-animate-css": "^1.2.5"
52
+ },
53
+ "devDependencies": {
54
+ "@biomejs/biome": "2.0.0-beta.1",
55
+ "@jszymanowski/biomejs-config": "1.2.0",
56
+ "@storybook/addon-essentials": "8.6.12",
57
+ "@storybook/addon-interactions": "8.6.12",
58
+ "@storybook/addon-themes": "8.6.12",
59
+ "@storybook/builder-vite": "8.6.12",
60
+ "@storybook/react": "8.6.12",
61
+ "@storybook/react-vite": "8.6.12",
62
+ "@storybook/test": "8.6.12",
63
+ "@tailwindcss/vite": "4.1.5",
64
+ "@testing-library/jest-dom": "6.6.3",
65
+ "@testing-library/react": "16.3.0",
66
+ "@types/lodash": "^4.17.16",
67
+ "@types/node": "22.15.14",
68
+ "@types/react": "19.1.3",
69
+ "@types/react-dom": "19.1.3",
70
+ "@vitejs/plugin-react": "4.4.1",
71
+ "@vitest/browser": "3.1.3",
72
+ "@vitest/coverage-v8": "3.1.3",
73
+ "chromatic": "11.28.2",
74
+ "class-variance-authority": "0.7.1",
75
+ "clsx": "2.1.1",
76
+ "conventional-changelog-conventionalcommits": "8.0.0",
77
+ "globals": "16.1.0",
78
+ "jsdom": "26.1.0",
79
+ "path": "0.12.7",
80
+ "react": "19.1.0",
81
+ "react-dom": "19.1.0",
82
+ "release-it": "^19.0.2",
83
+ "storybook": "8.6.12",
84
+ "tailwind-merge": "3.2.0",
85
+ "tailwindcss": "4.1.5",
86
+ "typescript": "5.8.3",
87
+ "vite": "6.3.5",
88
+ "vite-plugin-dts": "4.5.3",
89
+ "vite-plugin-lib-inject-css": "2.2.2",
90
+ "vitest": "3.1.3"
91
+ },
92
+ "peerDependencies": {
93
+ "@jszymanowski/proper-date.js": "^0.6.0",
94
+ "@visx/axis": "^3.12.0",
95
+ "@visx/brush": "^3.12.0",
96
+ "@visx/curve": "^3.12.0",
97
+ "@visx/event": "^3.12.0",
98
+ "@visx/gradient": "^3.12.0",
99
+ "@visx/grid": "^3.12.0",
100
+ "@visx/group": "^3.12.0",
101
+ "@visx/responsive": "^3.12.0",
102
+ "@visx/scale": "^3.12.0",
103
+ "@visx/shape": "^3.12.0",
104
+ "@visx/tooltip": "^3.12.0",
105
+ "@visx/vendor": "^3.12.0",
106
+ "lodash": "^4.17.21",
107
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
108
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
109
+ "tailwindcss": "^4.0.0"
110
+ },
111
+ "packageManager": "pnpm@10.10.0"
112
+ }