-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.53 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
61
62
63
64
65
66
67
{
"name": "@glzr/components",
"version": "1.0.0",
"description": "A component library for SolidJS.",
"keywords": [
"solidjs",
"solid",
"ui",
"components"
],
"repository": "github:glzr-io/components",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./tailwind.config.cjs": "./tailwind.config.cjs"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"tailwind.config.cjs",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "tsup",
"dev": "npm run build -- --watch src",
"format": "prettier --write .",
"lint": "prettier --check ."
},
"prettier": "@glzr/style-guide/prettier",
"dependencies": {
"@corvu/drawer": "0.2.2",
"@corvu/resizable": "0.2.3",
"@kobalte/core": "0.13.7",
"@tabler/icons-solidjs": "3.19.0",
"class-variance-authority": "0.7.0",
"embla-carousel-solid": "8.3.0",
"tailwind-merge": "2.5.4"
},
"devDependencies": {
"@glzr/style-guide": "1.1.0",
"prettier": "3.1.1",
"solid-js": "1.9.3",
"tailwindcss": "3.4.13 ",
"tailwindcss-animate": "1.0.7",
"tsup": "7.2.0",
"tsup-preset-solid": "2.1.0",
"typescript": "5.5.3"
},
"peerDependencies": {
"solid-js": ">=1.7.0"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}