-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 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
{
"name": "@launchpad-ui/components",
"version": "0.7.0",
"status": "beta",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/launchdarkly/launchpad-ui",
"directory": "packages/components"
},
"description": "An implementation of LaunchDarkly's LaunchPad Design System using React Aria Components.",
"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": {
"@internationalized/date": "3.7.0",
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-aria/focus": "3.19.1",
"@react-aria/toast": "3.0.0-beta.19",
"@react-aria/utils": "3.27.0",
"@react-stately/toast": "3.0.0-beta.7",
"@react-stately/utils": "3.10.5",
"@react-types/shared": "3.27.0",
"class-variance-authority": "0.7.0",
"react-aria": "3.37.0",
"react-aria-components": "1.6.0",
"react-router": "7.0.1"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"react": "19.0.0",
"react-dom": "19.0.0",
"react-stately": "3.35.0"
}
}