-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.92 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
{
"name": "@bento/radio",
"version": "0.2.3",
"description": "Radio component",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"scripts": {
"build": "tsdown",
"lint": "biome lint && tsgo --noEmit",
"prepublishOnly": "node ../../../scripts/compile-readme.ts",
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsgo --noEmit -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/godaddy/antares.git"
},
"keywords": [
"accessibility",
"aria",
"bento",
"component",
"interactive",
"library",
"radio",
"react"
],
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/godaddy/antares/issues"
},
"homepage": "https://github.com/godaddy/antares#readme",
"files": [
"dist",
"src",
"package.json"
],
"dependencies": {
"@bento/container": "^0.2.1",
"@bento/icon": "^0.2.0",
"@bento/input": "^0.1.1",
"@bento/slots": "^0.3.0",
"@bento/use-data-attributes": "^0.1.1",
"@bento/use-props": "^0.2.3",
"@bento/visually-hidden": "^0.1.1",
"@react-aria/utils": "^3.34.0",
"react-aria": "^3.48.0",
"react-stately": "^3.46.0"
},
"devDependencies": {
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"tsdown": "^0.22.1",
"typescript": "^6.0.3",
"vitest": "^4.1.7",
"vitest-browser-react": "^2.2.0"
},
"peerDependencies": {
"react": "18.x || 19.x",
"react-dom": "18.x || 19.x"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}