-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.57 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
{
"name": "@launchpad-ui/navigation",
"version": "0.13.4",
"status": "beta",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/launchdarkly/launchpad-ui"
},
"description": "An element used to provide navigation links to help users move through an app.",
"license": "Apache-2.0",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json",
"./style.css": "./dist/style.css"
},
"source": "src/index.ts",
"scripts": {
"build": "vite build -c ../../vite.config.mts && tsc --project tsconfig.build.json",
"clean": "rm -rf dist",
"test": "vitest run --coverage"
},
"dependencies": {
"@launchpad-ui/chip": "0.9.58",
"@launchpad-ui/dropdown": "workspace:~",
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/menu": "workspace:~",
"@launchpad-ui/popover": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"classix": "2.2.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-router": "7.5.2",
"@react-aria/utils": "3.30.0",
"@react-stately/list": "3.12.4"
},
"devDependencies": {
"react": "19.1.0",
"react-dom": "19.1.0",
"react-router": "7.5.2",
"@react-types/shared": "3.31.0",
"@react-aria/utils": "3.30.0",
"@react-stately/list": "3.12.4"
}
}