-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.81 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@useplease-ui/ppudding",
"private": true,
"version": "1.1.0",
"homepage": "https://github.com/UsePlease-UI/PPudding#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/UsePlease-UI/PPudding.git"
},
"type": "module",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && npm run tailwind && rm -rf ./dist/ppudding.css",
"tailwind": "npx tailwindcss -o ./dist/style.css --minify",
"preview": "vite preview",
"prettier:check": "prettier {lib,stories} --check",
"prettier:fix": "prettier {lib,stories} --write",
"lint:check": "eslint {lib,stories}",
"lint:fix": "eslint {lib,stories} --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o storybook",
"test": "npm run build && npm pack"
},
"dependencies": {
"@floating-ui/react-dom": "^2.1.3",
"@heroicons/react": "^2.2.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"motion": "^11.18.2",
"react-remove-scroll": "^2.7.0",
"tailwind-merge": "^2.5.5",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@storybook/addon-a11y": "^9.0.0",
"@storybook/addon-docs": "^9.0.0",
"@storybook/addon-links": "^9.0.0",
"@storybook/addon-themes": "^9.0.0",
"@storybook/cli": "^9.0.0",
"@storybook/react-vite": "^9.0.0",
"@storybook/test-runner": "^0.22.0",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^4.4.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-storybook": "^9.0.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"globals": "^15.13.0",
"lodash.debounce": "^4.0.8",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"storybook": "^9.0.0",
"tailwind-scrollbar-hide": "^2.0.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.4.0",
"vite-tsconfig-paths": "^5.1.4"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"overrides": {
"storybook": "$storybook"
}
}