-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.21 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.21 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "monochrome",
"version": "0.3.0",
"description": "Accessible UI component library. Best-in-class performance. HTML-first, React and Vue supported.",
"author": "Colin van Eenige",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vaneenige/monochrome-ui.git"
},
"homepage": "https://github.com/vaneenige/monochrome-ui#readme",
"bugs": "https://github.com/vaneenige/monochrome-ui/issues",
"keywords": [
"accessible",
"a11y",
"aria",
"wai-aria",
"ui",
"component",
"components",
"component-library",
"library",
"headless",
"unstyled",
"lightweight",
"keyboard-navigation",
"html",
"react",
"vue",
"typescript",
"accordion",
"collapsible",
"menu",
"tabs"
],
"type": "module",
"sideEffects": [
"./dist/index.js"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
},
"./vue": {
"types": "./dist/vue/index.d.ts",
"default": "./dist/vue/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "NODE_ENV=production bun build.ts",
"test": "playwright test",
"lint": "biome check src tests",
"lint:fix": "biome check --write src tests",
"format": "biome format --write src tests",
"prepublishOnly": "bun run build && bun run test"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"vue": ">=3.5"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"vue": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@playwright/test": "1.58.2",
"@types/bun": "1.3.9",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vue/compiler-sfc": "3.5.29",
"react": "19.2.4",
"react-dom": "19.2.4",
"typescript": "^5.9.3",
"vue": "3.5.29"
},
"versionMeta": {
"gzipSize": 2219,
"tests": {
"total": 354,
"collapsible": 42,
"accordion": 66,
"menu": 176,
"tabs": 70
}
}
}