-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"name": "rescript-headlessui",
"version": "0.1.2",
"description": "ReScript bindings to HeadlessUI React component library",
"keywords": [
"rescript",
"bindings",
"headlessui"
],
"author": "Chris Bowling <cjbowln@gmail.com> (https://github.com/cbowling)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cbowling/rescript-headlessui.git"
},
"homepage": "https://github.com/cbowling/rescript-headlessui#readme",
"bugs": "https://github.com/cbowling/rescript-headlessui/issues",
"files": [
"/src",
"/rescript.json"
],
"type": "module",
"scripts": {
"res:build": "rescript build",
"res:dev": "rescript build -w",
"res:clean": "rescript clean",
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"vite": "^6.0.1"
},
"peerDependencies": {
"@rescript/core": "1.6.1",
"@rescript/react": "0.13.0",
"rescript": "11.1.4",
"rescript-webapi": "0.9.1"
},
"dependencies": {
"@headlessui/react": "2.2.0"
}
}