-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.48 KB
/
package.json
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
{
"name": "carve-ui",
"version": "0.1.1",
"description": "A collection of rugged headless component primitives for Alpine.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts",
"build:website": "turbo run build --filter=website",
"dev": "tsup src/index.ts --watch",
"dev:website": "turbo run dev --filter=website",
"dev:test": "turbo run dev --filter=test"
},
"keywords": [
"alpinejs",
"headless",
"ui",
"components",
"primitives",
"accessibility"
],
"author": "Joost Ramke <[email protected]>",
"license": "MIT",
"homepage": "https://carve.joostramke.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/jramke/carve-ui.git"
},
"bugs": {
"url": "https://github.com/jramke/carve-ui/issues"
},
"dependencies": {
"@floating-ui/dom": "^1.6.11"
},
"peerDependencies": {
"@alpinejs/collapse": "^3.0.0",
"@alpinejs/focus": "^3.0.0",
"@alpinejs/resize": "^3.0.0",
"alpinejs": "^3.0.0"
},
"devDependencies": {
"@alpinejs/collapse": "^3.14.3",
"@alpinejs/focus": "^3.14.3",
"@alpinejs/resize": "^3.14.3",
"@types/alpinejs": "^3.13.10",
"alpinejs": "^3.14.3",
"tsup": "^8.3.5",
"turbo": "^2.2.3",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}