-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "@leva-ui/plugin-plot",
"version": "0.10.0",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pmndrs/leva.git",
"directory": "packages/plugin-plot"
},
"bugs": "https://github.com/pmndrs/leva/issues",
"scripts": {
"dev": "tsdown --watch",
"build": "rm -rf dist && tsdown",
"clean": "rm -rf dist"
},
"peerDependencies": {
"@use-gesture/react": "catalog:",
"leva": ">=0.10.1",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"mathjs": "^10.1.1"
},
"devDependencies": {
"@use-gesture/react": "catalog:",
"leva": "workspace:*",
"tsdown": "^0.16.0",
"typescript": "catalog:"
}
}