-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.42 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.42 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
{
"name": "pixel-retroui",
"version": "2.1.0",
"description": "A retro-styled UI component library",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"pixel-retroui": "bin/install.js"
},
"scripts": {
"build": "rollup -c rollup.config.mjs",
"test": "jest",
"watch": "rollup -c rollup.config.mjs -w",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"dev": "storybook dev -p 6006"
},
"dependencies": {
"chalk": "^4.1.2",
"inquirer": "^8.2.6",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
"tslib": "^2.6.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-url": "^8.0.2",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-onboarding": "^8.6.12",
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
"@storybook/blocks": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/react-webpack5": "^8.6.12",
"@storybook/test": "^8.6.12",
"@svgr/rollup": "^8.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.13",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"postcss": "^8.4.39",
"postcss-loader": "^8.1.1",
"rollup": "^3.17.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^8.6.12",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"files": [
"dist",
"src/styles/*.css",
"src/components/**/*.css",
"fonts",
"bin"
],
"exports": {
".": "./dist/index.js",
"./dist/retroui.css": "./dist/retroui.css",
"./dist/index.css": "./dist/index.css",
"./dist/fonts.css": "./dist/fonts.css",
"./fonts/Minecraft.otf": "./fonts/Minecraft.otf",
"./fonts/Minecraft-Bold.otf": "./fonts/Minecraft-Bold.otf",
"./fonts/*": "./fonts/*"
},
"license": "BSD-3-Clause"
}