-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.52 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
{
"name": "@megablacklabel/react98retro",
"version": "0.2.3",
"description": "Windows 98 UI component library for React",
"type": "module",
"main": "./dist/react98retro.umd.cjs",
"module": "./dist/react98retro.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react98retro.js",
"require": "./dist/react98retro.umd.cjs",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"react",
"windows98",
"98.css",
"ui",
"component-library",
"retro"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MegaBlackLabel/react98retro.git"
},
"homepage": "https://megablacklabel.github.io/react98retro/",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:lib": "tsc -b && vite build --config vite.lib.config.ts",
"lint": "eslint .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"98.css": "^0.1.21",
"clsx": "^2.1.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.2.1",
"@eslint/js": "^10.0.1",
"@storybook/addon-a11y": "^10.4.2",
"@storybook/addon-docs": "^10.4.2",
"@storybook/addon-onboarding": "^10.4.2",
"@storybook/addon-vitest": "^10.4.2",
"@storybook/react": "^10.4.2",
"@storybook/react-vite": "^10.4.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/browser-playwright": "^4.1.8",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.4.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-storybook": "^10.4.2",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"playwright": "^1.60.0",
"postcss-prefix-selector": "^2.1.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"storybook": "^10.4.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2",
"vitest": "^4.1.8"
}
}