-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.31 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-aria-components",
"version": "1.14.0",
"description": "A library of styleable components built using React Aria",
"license": "Apache-2.0",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"source": "./src/index.ts",
"types": [
"./dist/types.d.ts",
"./src/index.ts"
],
"import": "./dist/import.mjs",
"require": "./dist/main.js"
},
"./i18n": {
"types": "./i18n/index.d.ts",
"import": "./i18n/index.mjs",
"require": "./i18n/index.js"
},
"./i18n/*": {
"types": "./i18n/lang.d.ts",
"import": "./i18n/*.mjs",
"require": "./i18n/*.js"
}
},
"files": [
"dist",
"src",
"i18n"
],
"sideEffects": [
"*.css"
],
"repository": {
"type": "git",
"url": "https://github.com/adobe/react-spectrum"
},
"dependencies": {
"@internationalized/date": "^3.10.1",
"@internationalized/string": "^3.2.7",
"@react-aria/autocomplete": "3.0.0-rc.4",
"@react-aria/collections": "^3.0.1",
"@react-aria/dnd": "^3.11.4",
"@react-aria/focus": "^3.21.3",
"@react-aria/interactions": "^3.26.0",
"@react-aria/live-announcer": "^3.4.4",
"@react-aria/overlays": "^3.31.0",
"@react-aria/ssr": "^3.9.10",
"@react-aria/textfield": "^3.18.3",
"@react-aria/toolbar": "3.0.0-beta.22",
"@react-aria/utils": "^3.32.0",
"@react-aria/virtualizer": "^4.1.11",
"@react-stately/autocomplete": "3.0.0-beta.4",
"@react-stately/layout": "^4.5.2",
"@react-stately/selection": "^3.20.7",
"@react-stately/table": "^3.15.2",
"@react-stately/utils": "^3.11.0",
"@react-stately/virtualizer": "^4.4.4",
"@react-types/form": "^3.7.16",
"@react-types/grid": "^3.3.6",
"@react-types/shared": "^3.32.1",
"@react-types/table": "^3.13.4",
"@swc/helpers": "^0.5.0",
"client-only": "^0.0.1",
"react-aria": "^3.45.0",
"react-stately": "^3.43.0",
"use-sync-external-store": "^1.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0"
}
}