-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 968 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 968 Bytes
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
{
"name": "@kleffio/plugin-components",
"version": "0.1.0",
"description": "Component showcase plugin for the Kleff panel",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/kleffio/plugin-components.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit"
},
"exports": {
".": "./src/index.ts"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"next": ">=15.0.0",
"@kleffio/sdk": "*",
"@kleffio/ui": "*"
},
"devDependencies": {
"@kleffio/sdk": "github:kleffio/plugin-sdk-js#v0.1.0",
"@kleffio/ui": "github:kleffio/ui#v0.1.0",
"@types/react": "^19.0.0",
"lucide-react": "^0.577.0",
"next": "^15.0.0",
"react": "^19.0.0",
"recharts": "2.15.4",
"sonner": "^2.0.7",
"tsup": "^8.0.0",
"typescript": "~5.9.3"
}
}