-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.04 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.04 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
{
"name": "@obonelli/raven-ui",
"version": "0.1.5",
"private": false,
"description": "Tailwind v4 UI components for React",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"style": "dist/styles.css",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": [
"dist/styles.css"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "next dev",
"build:web": "next build",
"start": "next start",
"build:lib": "tsup src/index.ts --dts --format cjs,esm --out-dir dist --sourcemap --clean --tsconfig tsconfig.build.json",
"build:css": "cross-env NODE_ENV=production postcss src/styles.css -o dist/styles.css",
"build": "npm run build:lib && npm run build:css",
"storybook": "storybook dev -p 6006 --config-dir .storybook",
"build-storybook": "storybook build --config-dir .storybook",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"vercel-build": "npm run build-storybook"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"devDependencies": {
"@storybook/addon-docs": "9.1.6",
"@storybook/nextjs-vite": "9.1.6",
"@storybook/react": "9.1.6",
"@tailwindcss/postcss": "4.1.13",
"@tailwindcss/vite": "4.1.13",
"@types/node": "24.5.1",
"@types/react": "19.1.13",
"@types/react-dom": "19.1.9",
"autoprefixer": "10.4.21",
"cross-env": "10.0.0",
"postcss": "8.5.6",
"postcss-cli": "11.0.1",
"rollup": "4.21.0",
"storybook": "9.1.6",
"tailwindcss": "4.1.13",
"tsup": "8.5.0",
"lightningcss": "1.26.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.21.0",
"@lightningcss/linux-x64-gnu": "1.26.0"
},
"engines": {
"node": ">=18.18"
}
}