@ebertjendustries/cstestwrapper 1.0.1
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/README.md +3 -0
- package/dist/chunk-KDQ226KY.mjs +45 -0
- package/dist/index.d.mts +569 -0
- package/dist/index.d.ts +569 -0
- package/dist/index.js +22684 -0
- package/dist/index.mjs +21291 -0
- package/dist/magic-string.es-H4HMI5HH.mjs +1299 -0
- package/package.json +95 -0
package/package.json
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ebertjendustries/cstestwrapper",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"main": "dist/index.cjs",
|
|
5
|
+
"module": "dist/index.mjs",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./dist/index.mjs",
|
|
10
|
+
"require": "./dist/index.cjs"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"peerDependencies": {
|
|
18
|
+
"@cloudscape-design/collection-hooks": "^1.0.73",
|
|
19
|
+
"@cloudscape-design/components": "^3.0.979",
|
|
20
|
+
"@cloudscape-design/design-tokens": "^3.0.57",
|
|
21
|
+
"@cloudscape-design/global-styles": "^1.0.44",
|
|
22
|
+
"@cloudscape-design/test-utils-core": "^1.0.59",
|
|
23
|
+
"@smastrom/react-rating": "^1.5.0",
|
|
24
|
+
"@testing-library/dom": "^10.4.0",
|
|
25
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
26
|
+
"@testing-library/react": "^16.3.0",
|
|
27
|
+
"@testing-library/user-event": "^14.6.1",
|
|
28
|
+
"react": "^19.1.0",
|
|
29
|
+
"react-dom": "^19.1.0",
|
|
30
|
+
"typescript": "^5.8.3"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@cloudscape-design/collection-hooks": "^1.0.73",
|
|
34
|
+
"@cloudscape-design/components": "^3.0.979",
|
|
35
|
+
"@cloudscape-design/design-tokens": "^3.0.57",
|
|
36
|
+
"@cloudscape-design/global-styles": "^1.0.44",
|
|
37
|
+
"@cloudscape-design/test-utils-core": "^1.0.59",
|
|
38
|
+
"@ebertjendustries/cswrapper": "^1.0.14",
|
|
39
|
+
"@smastrom/react-rating": "^1.5.0",
|
|
40
|
+
"@testing-library/dom": "^10.4.0",
|
|
41
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
42
|
+
"@testing-library/react": "^16.3.0",
|
|
43
|
+
"@testing-library/user-event": "^14.6.1",
|
|
44
|
+
"@types/node": "^22.15.21",
|
|
45
|
+
"@types/react": "^19.1.5",
|
|
46
|
+
"@types/react-dom": "^19.1.5",
|
|
47
|
+
"@vitejs/plugin-react": "^4.5.0",
|
|
48
|
+
"eslint": "^9.27.0",
|
|
49
|
+
"eslint-plugin-jest-dom": "^5.5.0",
|
|
50
|
+
"eslint-plugin-testing-library": "^7.2.1",
|
|
51
|
+
"jsdom": "^26.1.0",
|
|
52
|
+
"react": "^19.1.0",
|
|
53
|
+
"react-dom": "^19.1.0",
|
|
54
|
+
"ts-node": "^10.9.2",
|
|
55
|
+
"tsup": "^8.5.0",
|
|
56
|
+
"typescript": "^5.8.3",
|
|
57
|
+
"vite": "5.1.6",
|
|
58
|
+
"vitest": "^3.1.4"
|
|
59
|
+
},
|
|
60
|
+
"scripts": {
|
|
61
|
+
"build": "tsup",
|
|
62
|
+
"test": "vitest run"
|
|
63
|
+
},
|
|
64
|
+
"eslintConfig": {
|
|
65
|
+
"extends": [
|
|
66
|
+
"react-app",
|
|
67
|
+
"plugin:deprecation/recommended",
|
|
68
|
+
"plugin:react/recommended"
|
|
69
|
+
],
|
|
70
|
+
"rules": {
|
|
71
|
+
"@typescript-eslint/no-unused-vars": "warn",
|
|
72
|
+
"@typescript-eslint/no-floating-promises": "error",
|
|
73
|
+
"react/jsx-uses-react": "off",
|
|
74
|
+
"react/react-in-jsx-scope": "off",
|
|
75
|
+
"react/no-deprecated": "error"
|
|
76
|
+
},
|
|
77
|
+
"parser": "@typescript-eslint/parser",
|
|
78
|
+
"parserOptions": {
|
|
79
|
+
"project": "./tsconfig.json"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"browserslist": {
|
|
83
|
+
"production": [
|
|
84
|
+
">0.2%",
|
|
85
|
+
"not dead",
|
|
86
|
+
"not op_mini all"
|
|
87
|
+
],
|
|
88
|
+
"development": [
|
|
89
|
+
"last 1 chrome version",
|
|
90
|
+
"last 1 firefox version",
|
|
91
|
+
"last 1 safari version"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
"packageManager": "yarn@4.9.1"
|
|
95
|
+
}
|