@okshaun/components 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,107 @@
1
+ {
2
+ "name": "@okshaun/components",
3
+ "private": false,
4
+ "version": "0.1.0",
5
+ "description": "A comprehensive React component library with Panda CSS theming",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "scripts": {
11
+ "dev": "npm run panda:watch & vite",
12
+ "build": "npm run panda && SKIP_OPEN=true npm run generate-sprite && vite build && npm run ship",
13
+ "ship": "panda ship --outfile dist/panda.buildinfo.json",
14
+ "panda": "panda codegen",
15
+ "panda:watch": "panda codegen --watch",
16
+ "preview": "vite preview",
17
+ "lint": "eslint .",
18
+ "storybook": "storybook dev -p 6006",
19
+ "build-storybook": "storybook build",
20
+ "generate-sprite": "node src/utils/generate-sprite.js",
21
+ "prepublishOnly": "npm run build"
22
+ },
23
+ "files": [
24
+ "dist",
25
+ "README.md",
26
+ "LICENSE"
27
+ ],
28
+ "keywords": [
29
+ "react",
30
+ "components",
31
+ "design-system",
32
+ "panda-css",
33
+ "ui-library",
34
+ "theme"
35
+ ],
36
+ "peerDependencies": {
37
+ "react": "^18.0.0 || ^19.0.0",
38
+ "react-dom": "^18.0.0 || ^19.0.0"
39
+ },
40
+ "dependencies": {
41
+ "@fontsource-variable/piazzolla": "^5.1.1",
42
+ "@fontsource/ibm-plex-mono": "^5.1.0",
43
+ "@fontsource/ibm-plex-sans": "^5.1.0",
44
+ "date-fns": "^4.1.0"
45
+ },
46
+ "devDependencies": {
47
+ "@eslint/js": "^9.17.0",
48
+ "@pandacss/dev": "^1.4.3",
49
+ "@storybook/addon-essentials": "^8.5.2",
50
+ "@storybook/addon-interactions": "^8.5.2",
51
+ "@storybook/addon-onboarding": "^8.5.2",
52
+ "@storybook/addon-themes": "^8.6.14",
53
+ "@storybook/blocks": "^8.5.2",
54
+ "@storybook/react": "^8.5.2",
55
+ "@storybook/react-vite": "^8.5.2",
56
+ "@storybook/test": "^8.5.2",
57
+ "@types/node": "^22.7.7",
58
+ "@types/react": "19.0.8",
59
+ "@types/react-dom": "19.0.3",
60
+ "@vitejs/plugin-react": "^4.3.4",
61
+ "eslint": "^9.17.0",
62
+ "eslint-config-prettier": "^9.1.0",
63
+ "eslint-plugin-prettier": "^5.2.1",
64
+ "eslint-plugin-react": "^7.37.2",
65
+ "eslint-plugin-react-hooks": "^5.0.0",
66
+ "eslint-plugin-react-refresh": "^0.4.16",
67
+ "eslint-plugin-storybook": "^0.11.2",
68
+ "gh-pages": "^6.2.0",
69
+ "globals": "^15.14.0",
70
+ "postcss": "^8.5.1",
71
+ "prettier": "^3.3.3",
72
+ "storybook": "^8.5.2",
73
+ "svg-sprite": "^2.0.4",
74
+ "svgo": "^3.0.2",
75
+ "typescript": "^5.7.3",
76
+ "typescript-eslint": "^8.18.2",
77
+ "vite": "^6.0.5",
78
+ "vite-plugin-dts": "^4.5.4"
79
+ },
80
+ "eslintConfig": {
81
+ "extends": [
82
+ "plugin:storybook/recommended"
83
+ ]
84
+ },
85
+ "exports": {
86
+ ".": {
87
+ "types": "./dist/index.d.ts",
88
+ "import": "./dist/index.js",
89
+ "default": "./dist/index.js"
90
+ },
91
+ "./preset": {
92
+ "types": "./dist/preset.d.ts",
93
+ "import": "./dist/preset.js",
94
+ "default": "./dist/preset.js"
95
+ },
96
+ "./sprite.svg": "./dist/sprite.svg",
97
+ "./panda.buildinfo.json": "./dist/panda.buildinfo.json"
98
+ },
99
+ "repository": {
100
+ "type": "git",
101
+ "url": "git+https://github.com/shaunrfox/okshaun-components.git"
102
+ },
103
+ "bugs": {
104
+ "url": "https://github.com/shaunrfox/okshaun-components/issues"
105
+ },
106
+ "homepage": "https://github.com/shaunrfox/okshaun-components#readme"
107
+ }