@xinghunm/compass-ui 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,81 @@
1
+ {
2
+ "name": "@xinghunm/compass-ui",
3
+ "version": "0.1.0",
4
+ "description": "Compass UI - A React component library that guides your way to better user experience",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "sideEffects": false,
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "keywords": [
20
+ "react",
21
+ "components",
22
+ "ui",
23
+ "compass",
24
+ "typescript",
25
+ "navigation"
26
+ ],
27
+ "author": "xinghunm",
28
+ "license": "MIT",
29
+ "peerDependencies": {
30
+ "react": ">=16.8.0",
31
+ "react-dom": ">=16.8.0"
32
+ },
33
+ "dependencies": {
34
+ "@emotion/react": "^11.14.0",
35
+ "@emotion/styled": "^11.14.1",
36
+ "@floating-ui/react": "^0.27.16",
37
+ "date-fns": "^4.1.0",
38
+ "react-transition-group": "^4.4.5",
39
+ "react-window": "^2.2.3"
40
+ },
41
+ "devDependencies": {
42
+ "@storybook/addon-docs": "^9.1.12",
43
+ "@storybook/addon-links": "^9.1.12",
44
+ "@storybook/manager-api": "^8.6.14",
45
+ "@storybook/react": "^9.1.12",
46
+ "@storybook/react-vite": "^9.1.12",
47
+ "@storybook/testing-library": "^0.2.0",
48
+ "@storybook/theming": "^8.6.14",
49
+ "@testing-library/jest-dom": "^6.9.1",
50
+ "@testing-library/react": "^16.3.0",
51
+ "@testing-library/user-event": "^14.6.1",
52
+ "@types/jest": "^29.5.5",
53
+ "@types/react": "^18.2.22",
54
+ "@types/react-dom": "^18.2.7",
55
+ "@types/react-transition-group": "^4.4.12",
56
+ "@types/react-window": "^2.0.0",
57
+ "identity-obj-proxy": "^3.0.0",
58
+ "jest": "^29.7.0",
59
+ "jest-environment-jsdom": "^30.2.0",
60
+ "prettier": "^3.0.0",
61
+ "prettier-v2": "npm:prettier@^2.8.8",
62
+ "react": "^18.2.0",
63
+ "react-dom": "^18.2.0",
64
+ "storybook": "^9.1.12",
65
+ "ts-jest": "^29.1.0",
66
+ "tsup": "^7.2.0",
67
+ "typescript": "^5.2.2"
68
+ },
69
+ "publishConfig": {
70
+ "access": "public"
71
+ },
72
+ "scripts": {
73
+ "build": "tsup src/index.ts --format cjs,esm --dts --external react,react-dom --outDir dist --clean --minify",
74
+ "dev": "tsup src/index.ts --format cjs,esm --dts --external react,react-dom --outDir dist --watch",
75
+ "lint": "eslint src --ext .ts,.tsx",
76
+ "test": "jest",
77
+ "clean": "rm -rf dist",
78
+ "storybook": "storybook dev -p 6006",
79
+ "build-storybook": "storybook build"
80
+ }
81
+ }