-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "@togo-framework/ui-plugin",
"version": "0.1.0",
"description": "togo UI kit — plugin marketplace cards, detail pages, and workflow/steps editor. Depends on @togo-framework/ui-core.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"prepare": "tsup",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"lucide-react": ">=0.400.0",
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"@togo-framework/ui-core": "^0.1.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"sonner": "^1.7.4",
"recharts": "^2.15.4",
"react-icons": "^5.6.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"lucide-react": "^0.462.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.3.0",
"typescript": "^5.6.0",
"@storybook/addon-essentials": "^8.4.0",
"@storybook/addon-themes": "^8.4.0",
"@storybook/react": "^8.4.0",
"@storybook/react-vite": "^8.4.0",
"@storybook/test": "^8.4.0",
"@tailwindcss/vite": "^4.0.0",
"storybook": "^8.4.0",
"tailwindcss": "^4.0.0",
"vite": "^6.0.0"
}
}