@nice2dev/testing 1.0.10
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 +36 -0
- package/dist/index.cjs +243 -0
- package/dist/index.d.ts +1618 -0
- package/dist/index.mjs +19016 -0
- package/dist/magic-string.es-B81Zo59j.cjs +10 -0
- package/dist/magic-string.es-uPKorP4O.js +663 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nice2dev/testing",
|
|
3
|
+
"version": "1.0.10",
|
|
4
|
+
"description": "Shared testing utilities for Nice2Dev UI libraries",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"module": "dist/index.mjs",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsc -p tsconfig.build.json && vite build",
|
|
22
|
+
"test": "vitest run --passWithNoTests",
|
|
23
|
+
"test:watch": "vitest",
|
|
24
|
+
"typecheck": "tsc --noEmit",
|
|
25
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
26
|
+
"clean": "rimraf dist"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"fast-check": "^3.22.0"
|
|
30
|
+
},
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"react": ">=17.0.0",
|
|
33
|
+
"@testing-library/react": ">=14.0.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@testing-library/react": "^14.0.0",
|
|
37
|
+
"@types/react": "^18.2.0",
|
|
38
|
+
"@vitejs/plugin-react": "^4.3.0",
|
|
39
|
+
"jsdom": "^26.0.0",
|
|
40
|
+
"react": "^18.2.0",
|
|
41
|
+
"react-dom": "^18.2.0",
|
|
42
|
+
"rimraf": "^6.0.0",
|
|
43
|
+
"typescript": "^5.8.0",
|
|
44
|
+
"vite": "^6.4.0",
|
|
45
|
+
"vite-plugin-dts": "^4.0.0",
|
|
46
|
+
"vitest": "^4.1.0"
|
|
47
|
+
},
|
|
48
|
+
"keywords": [
|
|
49
|
+
"testing",
|
|
50
|
+
"react",
|
|
51
|
+
"nice2dev",
|
|
52
|
+
"test-utils",
|
|
53
|
+
"testing-library"
|
|
54
|
+
],
|
|
55
|
+
"author": "Nice2Dev",
|
|
56
|
+
"license": "SEE LICENSE IN LICENSE"
|
|
57
|
+
}
|