-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.12 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@blueskyproject/finch",
"private": false,
"version": "0.1.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"deploy-storybook": "npm run build-storybook && gh-pages -d storybook-static",
"reload-tiled": "rm -rf node_modules/@blueskyproject/tiled && npm install @blueskyproject/tiled@latest && npm run build"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/finch.es.js",
"require": "./dist/finch.umd.js"
},
"./style.css": "./dist/finch.css",
"./dist/finch.css": "./dist/finch.css"
},
"main": "./dist/finch.umd.js",
"module": "./dist/finch.es.js",
"dependencies": {
"@blueskyproject/tiled": "^0.0.14",
"@phosphor-icons/react": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@storybook/addons": "^7.6.17",
"@storybook/theming": "^8.6.14",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-shape": "^3.2.0",
"dayjs": "^1.11.13",
"lucide-react": "^0.487.0",
"react-router-dom": "^6.30.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"three": "^0.178.0"
},
"peerDependencies": {
"react": ">16.8.x",
"react-dom": ">16.8.x",
"react-router": "^6.30.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@eslint/js": "^9.17.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/d3-shape": "^3.1.7",
"@types/node": "^22.14.0",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@types/react-plotly.js": "^2.6.3",
"@types/three": "^0.178.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-storybook": "^0.11.2",
"gh-pages": "^6.3.0",
"globals": "^15.13.0",
"msw": "^2.8.4",
"msw-storybook-addon": "^2.0.4",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-plotly.js": "^2.6.0",
"react-tooltip": "^5.28.0",
"storybook": "^8.4.7",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/bluesky/finch"
},
"bugs": {
"url": "https://github.com/bluesky/finch/issues"
},
"homepage": "https://github.com/bluesky/finch#readme",
"author": "Seij De Leon",
"license": "BSD-3-Clause",
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}