-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.04 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "fluidity-react",
"version": "0.0.1",
"private": false,
"description": "fluidity - a react components library",
"keywords": [
"fluidity",
"react",
"components",
"library"
],
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"sideEffects": [
"**/*.s?css"
],
"directories": {
"lib": "lib"
},
"scripts": {
"test": "bun test",
"check": "biome check ./lib --write",
"sb": "storybook dev -p 6006",
"prepublishOnly": "bun run build",
"build": "tsc --p ./tsconfig.lib.json && vite build",
"build-docs": "storybook build -o docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ImJeevesh/fluidity.git"
},
"engines": {
"bun": ">=1.1.10",
"yarn": "use_bun_instead"
},
"author": "Jeevesh",
"license": "MIT",
"bugs": {
"url": "https://github.com/ImJeevesh/fluidity/issues"
},
"homepage": "https://github.com/ImJeevesh/fluidity#readme",
"peerDependencies": {
"@bem-react/classname": ">=1.6.0",
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@chromatic-com/storybook": "^1.9.0",
"@happy-dom/global-registrator": "^15.7.3",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/bun": "^1.1.8",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"react-test-renderer": "^18.3.1",
"sass": "^1.78.0",
"storybook": "^8.2.9",
"typescript": "^5.4.5",
"vite": "^5.4.3",
"vite-plugin-dts": "^4.1.1",
"vite-plugin-lib-inject-css": "^2.1.1"
},
"trustedDependencies": [
"@biomejs/biome"
]
}