-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.27 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
{
"name": "@launchpad-ui/filter",
"version": "0.11.9",
"description": "filter a list of results",
"repository": "launchdarkly/launchpad-ui",
"license": "Apache-2.0",
"status": "beta",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"source": "src/index.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"build": "vite build -c ../../vite.config.mts && tsc --project tsconfig.build.json",
"clean": "rm -rf dist",
"test": "vitest run --coverage"
},
"dependencies": {
"@launchpad-ui/button": "workspace:~",
"@launchpad-ui/dropdown": "workspace:~",
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/menu": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"classix": "2.2.0"
},
"devDependencies": {
"@react-aria/visually-hidden": "3.8.28",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"peerDependencies": {
"@react-aria/visually-hidden": "3.8.28",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json",
"./style.css": "./dist/style.css"
}
}