@chem-po/react-web 0.0.2
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 +89 -0
- package/src/index.ts +4 -0
package/package.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@chem-po/react-web",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "src/index.ts",
|
|
6
|
+
"types": "src/index.ts",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": {
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"default": "./dist/index.cjs"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"keywords": [],
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"author": "",
|
|
25
|
+
"license": "ISC",
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@chem-po/react": "0.0.2",
|
|
28
|
+
"@chem-po/core": "0.0.2"
|
|
29
|
+
},
|
|
30
|
+
"peerDependencies": {
|
|
31
|
+
"@chakra-ui/anatomy": "^2.2.2",
|
|
32
|
+
"@chakra-ui/icons": "^2.1.1",
|
|
33
|
+
"@chakra-ui/react": "^2.10.3",
|
|
34
|
+
"@chakra-ui/theme-tools": "^2.1.2",
|
|
35
|
+
"@emotion/react": "^11.13.3",
|
|
36
|
+
"@emotion/styled": "^11.13.0",
|
|
37
|
+
"@react-hook/resize-observer": "^2.0.2",
|
|
38
|
+
"firebase": "^10.13.1",
|
|
39
|
+
"framer-motion": "^12.6.3",
|
|
40
|
+
"howler": "^2.2.4",
|
|
41
|
+
"lottie-react": "^2.4.0",
|
|
42
|
+
"nested-property": "^4.0.0",
|
|
43
|
+
"react": "18.3.1",
|
|
44
|
+
"react-dom": "^18.3.1",
|
|
45
|
+
"react-currency-input-field": "^3.8.0",
|
|
46
|
+
"react-day-picker": "^9.0.9",
|
|
47
|
+
"react-error-boundary": "^4.0.13",
|
|
48
|
+
"react-hook-form": "^7.55.0",
|
|
49
|
+
"react-router": "^6.26.2",
|
|
50
|
+
"react-router-dom": "^6.26.2",
|
|
51
|
+
"react-textarea-autosize": "^8.5.3",
|
|
52
|
+
"react-transition-group": "^4.4.5",
|
|
53
|
+
"react-window": "^1.8.10",
|
|
54
|
+
"react-window-infinite-loader": "^1.0.9",
|
|
55
|
+
"@hello-pangea/dnd": "^17.0.0",
|
|
56
|
+
"zustand": "^4.3.3"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/howler": "^2.2.11",
|
|
60
|
+
"@types/react": "^18.3.1",
|
|
61
|
+
"@types/react-beautiful-dnd": "^13.1.8",
|
|
62
|
+
"@types/react-transition-group": "^4.4.11",
|
|
63
|
+
"@types/react-window": "^1.8.8",
|
|
64
|
+
"@types/react-window-infinite-loader": "^1.0.9",
|
|
65
|
+
"replace-in-file": "^8.1.0",
|
|
66
|
+
"typescript": "^5.7.2",
|
|
67
|
+
"vite": "^5.4.6",
|
|
68
|
+
"typescript-eslint": "^8.11.0",
|
|
69
|
+
"@eslint/js": "^9.13.0",
|
|
70
|
+
"@types/eslint__js": "^8.42.3",
|
|
71
|
+
"@typescript-eslint/parser": "8.12.2",
|
|
72
|
+
"eslint": "^9.13.0",
|
|
73
|
+
"eslint-config-prettier": "^9.1.0",
|
|
74
|
+
"eslint-import-resolver-typescript": "^3.6.3",
|
|
75
|
+
"eslint-plugin-import": "^2.31.0",
|
|
76
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
77
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
78
|
+
"prettier": "^3.2.5",
|
|
79
|
+
"tsup": "^8.3.0"
|
|
80
|
+
},
|
|
81
|
+
"description": "",
|
|
82
|
+
"scripts": {
|
|
83
|
+
"type-check": "tsc --noEmit",
|
|
84
|
+
"lint": "pnpm type-check && eslint \"src/**/*.ts*\" --fix --quiet",
|
|
85
|
+
"build": "tsup ./src/index.ts --tsconfig ./tsconfig.json --config ./tsup.config.ts",
|
|
86
|
+
"prebuild": "pnpm lint",
|
|
87
|
+
"clean": "rm -rf dist"
|
|
88
|
+
}
|
|
89
|
+
}
|
package/src/index.ts
ADDED